chore(librarian): rename owlbot.py to librarian.py #1493
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: "Run systests on emulator" | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| run-systests: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.14' | |
| # firestore emulator requires java 21+ | |
| - name: Setup Java | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: temurin | |
| java-version: '21' | |
| - name: Setup GCloud SDK | |
| uses: google-github-actions/[email protected] | |
| - name: Install / run Nox | |
| run: | | |
| python -m pip install --upgrade setuptools pip | |
| python -m pip install nox | |
| nox -s system_emulated |