Change python version
Some checks failed
Linter / ruff (push) Failing after 6s
Linter / eslint (push) Failing after 13s
Tests / tests on CPU (push) Failing after 39s

This commit is contained in:
soaska 2024-05-03 21:05:26 +03:00
parent fa4fc5b1a5
commit b4ddc461a4
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ jobs:
uses: actions/checkout@v3 uses: actions/checkout@v3
- uses: actions/setup-python@v4 - uses: actions/setup-python@v4
with: with:
python-version: 3.11 python-version: 3.11.0
# NB: there's no cache: pip here since we're not installing anything # NB: there's no cache: pip here since we're not installing anything
# from the requirements.txt file(s) in the repository; it's faster # from the requirements.txt file(s) in the repository; it's faster
# not to have GHA download an (at the time of writing) 4 GB cache # not to have GHA download an (at the time of writing) 4 GB cache

View File

@ -10,7 +10,7 @@ env:
jobs: jobs:
test: test:
name: tests on CPU name: tests on CPU
runs-on: ubuntu:22.04 runs-on: ubuntu-latest
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
steps: steps:
- name: Checkout Code - name: Checkout Code