Skip to content

Commit d9146c8

Browse files
committed
Added GH for basic precommit testing on PR
1 parent ed71ac4 commit d9146c8

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/ci.yaml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Test and build
2+
3+
# When does this run - new, reopened or updated PRs, pushes to main
4+
on:
5+
pull_request:
6+
types: [opened, synchronize, reopened]
7+
push:
8+
branches: [main]
9+
10+
jobs:
11+
qa:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v4
15+
- uses: actions/setup-python@v5
16+
with:
17+
python-version: "3.10"
18+
- uses: pre-commit/[email protected]

0 commit comments

Comments
 (0)