Skip to content

Commit f9dd59f

Browse files
authored
chore: update workflow (#75)
1 parent 87d174c commit f9dd59f

File tree

1 file changed

+7
-13
lines changed

1 file changed

+7
-13
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ jobs:
88
lint:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v4
11+
- uses: actions/checkout@v5
1212
- name: Set up Python
13-
uses: actions/setup-python@v5
13+
uses: actions/setup-python@v6
1414
with:
1515
python-version: '3.x'
1616
- name: Install the code linting and formatting tool Ruff
@@ -26,16 +26,10 @@ jobs:
2626
strategy:
2727
fail-fast: false
2828
matrix:
29-
python-version:
30-
- "3.8"
31-
- "3.9"
32-
- "3.10"
33-
- "3.11"
34-
- "3.12"
35-
- "3.13"
29+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
3630
steps:
37-
- uses: actions/checkout@v4
38-
- uses: actions/setup-python@v4
31+
- uses: actions/checkout@v5
32+
- uses: actions/setup-python@v6
3933
with:
4034
python-version: ${{ matrix.python-version }}
4135
- run: pip install build setuptools wheel
@@ -49,8 +43,8 @@ jobs:
4943
matrix:
5044
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
5145
steps:
52-
- uses: actions/checkout@v4
53-
- uses: actions/setup-python@v5
46+
- uses: actions/checkout@v5
47+
- uses: actions/setup-python@v6
5448
with:
5549
python-version: ${{ matrix.python-version }}
5650
- run: pip install pytest pytest-cov

0 commit comments

Comments
 (0)