Skip to content

Commit d09ff92

Browse files
zaniebindygreg
authored andcommitted
Add GitHub Actions workflow
1 parent f5980ce commit d09ff92

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/check.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
2+
name: Check
3+
4+
on:
5+
push:
6+
pull_request:
7+
8+
jobs:
9+
check:
10+
runs-on: "ubuntu-latest"
11+
name: "check"
12+
steps:
13+
- uses: actions/checkout@v4
14+
- uses: actions/setup-python@v5
15+
with:
16+
python-version: "3.12"
17+
18+
- name: "Run checks"
19+
run: |
20+
python ./check.py

0 commit comments

Comments
 (0)