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 2bb2f4c commit 71731b9Copy full SHA for 71731b9
.github/workflows/run_tests.yaml
@@ -19,7 +19,7 @@ jobs:
19
- name: Checkout repository
20
uses: actions/checkout@v3
21
22
- - name: setup Python
+ - name: Setup Python
23
uses: actions/setup-python@v3
24
with:
25
python-version: "3.10"
@@ -38,7 +38,11 @@ jobs:
38
python -m pip install --upgrade pip
39
pip install -r requirements.txt
40
pip install --upgrade pytest pytest-html
41
+ pip install ruff
42
43
+ - name: Run Linting
44
+ run: |
45
+ ruff check .
46
47
- name: Run tests
48
run: |
@@ -50,4 +54,4 @@ jobs:
50
54
51
55
report_paths: '**/test-results.xml'
52
56
detailed_summary: true
53
- include_passed: true
57
+ include_passed: true
0 commit comments