We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42f8eab commit 4822eccCopy full SHA for 4822ecc
.github/workflows/jobs-check.yml
@@ -55,3 +55,21 @@ jobs:
55
run: cp data.py-dist data.py
56
- name: Check with pyright
57
run: pyright lib/ # tests/
58
+
59
+ ruff:
60
+ runs-on: ubuntu-latest
61
+ steps:
62
+ - uses: actions/checkout@v2
63
+ - name: Set up Python
64
+ uses: actions/setup-python@v4
65
+ with:
66
+ python-version: 3.8
67
+ - name: Install dependencies
68
+ run: |
69
+ python -m pip install --upgrade pip
70
+ pip install -r requirements/base.txt
71
+ pip install ruff
72
+ - name: Create a dummy data.py
73
+ run: cp data.py-dist data.py
74
+ - name: Check with ruff
75
+ run: ruff lib/ tests/
0 commit comments