Skip to content

Commit ee415b4

Browse files
committed
Add github action
1 parent 4b31b06 commit ee415b4

1 file changed

Lines changed: 27 additions & 0 deletions

File tree

.github/workflows/qa.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
on:
2+
push:
3+
branches:
4+
- main
5+
pull_request:
6+
branches:
7+
- main
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

Comments
 (0)