Skip to content

Commit 519a84c

Browse files
committed
Added github action to run pytest
1 parent 0fe2a69 commit 519a84c

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Continuous Integration
22

33
on:
44
pull_request:
5-
types: [opened, reopened]
5+
types: [opened, reopened, synchronize]
66

77
jobs:
88
unit_tests:
@@ -22,3 +22,7 @@ jobs:
2222
run: cfbs validate
2323
- name: Check the formatting
2424
run: cfbs --check pretty ./cfbs.json
25+
- name: Install pytest
26+
run: pip install pytest
27+
- name: Run promise type tests
28+
run: python3 -m pytest promise-types/ -v

0 commit comments

Comments
 (0)