Skip to content

Commit 607f395

Browse files
committed
Simplify lint job.
- Remove unused loader env. - Remove matrix and use direct python version.
1 parent 7e9f099 commit 607f395

File tree

1 file changed

+2
-9
lines changed

1 file changed

+2
-9
lines changed

.github/workflows/main.yaml

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,11 @@ jobs:
66
lint:
77
runs-on: ubuntu-latest
88
timeout-minutes: 10
9-
strategy:
10-
matrix:
11-
python-version:
12-
- '3.14'
139
steps:
1410
- uses: actions/checkout@v5
15-
- name: Use Python ${{ matrix.python-version }}
16-
uses: actions/setup-python@v6
11+
- uses: actions/setup-python@v6
1712
with:
18-
python-version: ${{ matrix.python-version }}
13+
python-version: '3.14'
1914
cache: 'pip'
2015
- name: Install testing dependencies
2116
run: |
@@ -26,8 +21,6 @@ jobs:
2621
continue-on-error: true
2722
run: |
2823
flake8 lib/pyld tests --count --show-source --statistics
29-
env:
30-
LOADER: ${{ matrix.loader }}
3124
test:
3225
runs-on: ubuntu-latest
3326
needs: [lint]

0 commit comments

Comments
 (0)