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.
1 parent 7e9f099 commit 607f395Copy full SHA for 607f395
.github/workflows/main.yaml
@@ -6,16 +6,11 @@ jobs:
6
lint:
7
runs-on: ubuntu-latest
8
timeout-minutes: 10
9
- strategy:
10
- matrix:
11
- python-version:
12
- - '3.14'
13
steps:
14
- uses: actions/checkout@v5
15
- - name: Use Python ${{ matrix.python-version }}
16
- uses: actions/setup-python@v6
+ - uses: actions/setup-python@v6
17
with:
18
- python-version: ${{ matrix.python-version }}
+ python-version: '3.14'
19
cache: 'pip'
20
- name: Install testing dependencies
21
run: |
@@ -26,8 +21,6 @@ jobs:
26
continue-on-error: true
27
22
28
23
flake8 lib/pyld tests --count --show-source --statistics
29
- env:
30
- LOADER: ${{ matrix.loader }}
31
24
test:
32
25
33
needs: [lint]
0 commit comments