We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8471ff4 commit 128374dCopy full SHA for 128374d
3 files changed
.github/workflows/main.yml
@@ -12,19 +12,19 @@ jobs:
12
python_version:
13
- '3.9'
14
os:
15
- - ubuntu-22.04
+ - ubuntu-latest
16
runs-on: ${{ matrix.os }}
17
steps:
18
- name: Setup python
19
- uses: actions/setup-python@v4
+ uses: actions/setup-python@v6
20
with:
21
python-version: ${{ matrix.python_version }}
22
- name: Checkout code
23
- uses: actions/checkout@v4
+ uses: actions/checkout@v6
24
- name: Install poetry
25
run: |
26
pip3 install poetry
27
- name: Install dependencies
28
- run: poetry install --no-interaction --no-root
+ run: poetry install --no-interaction
29
- name: Run checks
30
run: poetry run make check
0 commit comments