We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0fe2a69 commit 519a84cCopy full SHA for 519a84c
1 file changed
.github/workflows/ci.yml
@@ -2,7 +2,7 @@ name: Continuous Integration
2
3
on:
4
pull_request:
5
- types: [opened, reopened]
+ types: [opened, reopened, synchronize]
6
7
jobs:
8
unit_tests:
@@ -22,3 +22,7 @@ jobs:
22
run: cfbs validate
23
- name: Check the formatting
24
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