File tree Expand file tree Collapse file tree 2 files changed +41
-3
lines changed Expand file tree Collapse file tree 2 files changed +41
-3
lines changed Original file line number Diff line number Diff line change 1+ name : check lint
2+
3+ on :
4+ pull_request :
5+ branches :
6+ - main
7+ push :
8+
9+ jobs :
10+ build :
11+
12+ runs-on : ubuntu-latest
13+ strategy :
14+ matrix :
15+ python-version :
16+ - ' 3.10'
17+ - ' 3.11'
18+ - ' 3.12.4'
19+ - ' 3.13'
20+
21+ steps :
22+ - uses : actions/checkout@v4
23+ - name : Set up Python ${{ matrix.python-version }}
24+ uses : actions/setup-python@v5
25+ with :
26+ python-version : ${{ matrix.python-version }}
27+
28+ - name : Install Poetry
29+ uses : abatilo/actions-poetry@v2
30+ with :
31+ poetry-version : 1.8.4
32+
33+ - name : Disables creation of virtualenvs
34+ run : poetry config virtualenvs.create false
35+
36+ - name : Install dependencies
37+ run : poetry install
38+
39+ - name : run lint
40+ run : |
41+ make check
Original file line number Diff line number Diff line change 3636 - name : Install dependencies
3737 run : poetry install
3838
39- - name : run lint
40- run : |
41- make check
4239 - name : run tests
4340 run : |
4441 make test
You can’t perform that action at this time.
0 commit comments