We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 961a0b2 + 5ea8d7b commit 909715aCopy full SHA for 909715a
1 file changed
.github/workflows/pull_request.yml
@@ -7,7 +7,7 @@ on:
7
8
jobs:
9
test:
10
- runs-on: ubuntu-18.04
+ runs-on: ubuntu-22.04
11
strategy:
12
# tests can't run in parallel as they write and read data with same keys
13
max-parallel: 1
@@ -16,7 +16,7 @@ jobs:
16
steps:
17
# Get the code into the container
18
- name: Checkout
19
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
20
# Setup Python
21
- name: Setup Python
22
uses: actions/setup-python@v4
@@ -33,4 +33,4 @@ jobs:
33
run: |
34
python -m pip install --upgrade pip
35
python -m pip install pytest pytest-asyncio aiohttp
36
- pytest tests
+ pytest tests
0 commit comments