Skip to content

Commit 4aa4fd9

Browse files
committed
re-add qc
1 parent 5c8c744 commit 4aa4fd9

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/pr_qc.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Pull Request Quality Checks
2+
on:
3+
pull_request:
4+
types: [ opened, synchronize ]
5+
branches: [ main ]
6+
jobs:
7+
run-qa:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Check out repository code
11+
uses: actions/checkout@v4
12+
- name: Set up Python
13+
uses: actions/setup-python@v5
14+
with:
15+
python-version: 3.11
16+
- name: Run qa
17+
run: |
18+
pip install ".[dev]"
19+
make qa

0 commit comments

Comments
 (0)