We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b31b06 commit ee415b4Copy full SHA for ee415b4
1 file changed
.github/workflows/qa.yml
@@ -0,0 +1,27 @@
1
+on:
2
+ push:
3
+ branches:
4
+ - main
5
+ pull_request:
6
7
8
+jobs:
9
+ test:
10
+ runs-on: ubuntu-latest
11
+ strategy:
12
+ matrix:
13
+ python-version: ["3.13"]
14
+ steps:
15
+ - uses: actions/checkout@v4
16
+ - name: Set up Python ${{ matrix.python-version }}
17
+ uses: actions/setup-python@v5
18
+ with:
19
+ python-version: ${{ matrix.python-version }}
20
+ - name: pip install
21
+ run: pip install -r requirements-dev.txt
22
+ - name: ruff check
23
+ run: ruff check .
24
+ - name: ruff format
25
+ run: ruff format --check .
26
+ - name: mypy
27
+ run: mypy .
0 commit comments