Skip to content

Commit 8c7c33a

Browse files
committed
Merge remote-tracking branch 'origin/main' into gp-fix-issue-2
2 parents a477e1b + 46db5d2 commit 8c7c33a

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

.github/workflows/check.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: check
2+
on:
3+
push:
4+
pull_request:
5+
6+
jobs:
7+
ok:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v4
11+
- name: Sanity check
12+
run: |
13+
echo "OK"
14+
python3 -c "import ast; ast.parse(open('src/calculator.py').read()); print('parsed')"

0 commit comments

Comments
 (0)