File tree Expand file tree Collapse file tree 2 files changed +27
-3
lines changed Expand file tree Collapse file tree 2 files changed +27
-3
lines changed Original file line number Diff line number Diff line change @@ -3,11 +3,34 @@ name: Main CI
33on : [push]
44
55jobs :
6- # lint:
7- # FIXME
6+ lint :
7+ runs-on : ubuntu-latest
8+ timeout-minutes : 10
9+ strategy :
10+ matrix :
11+ python-version :
12+ - ' 3.12'
13+ steps :
14+ - uses : actions/checkout@v4
15+ - name : Use Python ${{ matrix.python-version }}
16+ uses : actions/setup-python@v4
17+ with :
18+ python-version : ${{ matrix.python-version }}
19+ cache : ' pip'
20+ - name : Install testing dependencies
21+ run : |
22+ python -m pip install --upgrade pip
23+ pip install -r requirements-test.txt
24+ - name : Lint
25+ # FIXME
26+ continue-on-error : true
27+ run : |
28+ flake8 lib/pyld tests --count --show-source --statistics
29+ env :
30+ LOADER : ${{ matrix.loader }}
831 test :
932 runs-on : ubuntu-latest
10- # needs: [lint]
33+ needs : [lint]
1134 timeout-minutes : 10
1235 strategy :
1336 matrix :
Original file line number Diff line number Diff line change 1+ flake8
You can’t perform that action at this time.
0 commit comments