Skip to content

Commit

Permalink
Update and sync test runner and appengine runtimes
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisroat committed Oct 15, 2024
1 parent a8d8895 commit 68ce5ac
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on: [push, pull_request]

jobs:
lint:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Set up Python
Expand All @@ -20,7 +20,7 @@ jobs:
make lint
test:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
Expand All @@ -40,7 +40,7 @@ jobs:
make test
publish:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
needs: [lint, test]
if: startsWith(github.ref, 'refs/tags')
steps:
Expand Down
2 changes: 1 addition & 1 deletion server/app.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
runtime: python311
runtime: python312 # Make sure github test runners use same image and python versions.

handlers:
- url: /static
Expand Down

0 comments on commit 68ce5ac

Please sign in to comment.