File tree Expand file tree Collapse file tree 2 files changed +48
-0
lines changed
Expand file tree Collapse file tree 2 files changed +48
-0
lines changed Original file line number Diff line number Diff line change 1+ name : lint
2+
3+ on :
4+ push :
5+ workflow_dispatch :
6+
7+ jobs :
8+ lint :
9+ runs-on : ubuntu-latest
10+ steps :
11+
12+ - name : Check out repository
13+ uses : actions/checkout@v4
14+
15+ - name : Install python and dependencies
16+ uses : actions/setup-python@v4
17+ with :
18+ python-version : ' 3.13'
19+ cache : ' pip'
20+ - run : pip install -r requirements.txt
21+
22+ - name : Lint
23+ run : |
24+ bash lint.sh
Original file line number Diff line number Diff line change 1+ name : tests
2+
3+ on :
4+ push :
5+ workflow_dispatch :
6+
7+ jobs :
8+ tests :
9+ runs-on : ubuntu-latest
10+ steps :
11+ - name : Check out repository
12+ uses : actions/checkout@v4
13+
14+ - name : Install python and dependencies
15+ uses : actions/setup-python@v4
16+ with :
17+ python-version : ' 3.13'
18+ cache : ' pip'
19+
20+ - name : Install requirements
21+ run : pip install -r requirements.txt
22+
23+ - name : Run tests
24+ run : pytest
You can’t perform that action at this time.
0 commit comments