Skip to content

Commit 39bda6c

Browse files
committed
Added github action to run pytest
1 parent c8a346a commit 39bda6c

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
push:
55
branches: [master]
66
pull_request:
7-
branches: [master]
7+
types: [opened, reopened, synchronize]
88

99
jobs:
1010
unit_tests:
@@ -31,3 +31,7 @@ jobs:
3131
run: cfbs --check pretty ./cfbs.json
3232
- name: Linting
3333
run: ./ci/linting.sh
34+
- name: Install pytest
35+
run: pip install pytest
36+
- name: Run promise type tests
37+
run: python3 -m pytest promise-types/ -v

0 commit comments

Comments
 (0)