We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c8a346a commit 39bda6cCopy full SHA for 39bda6c
.github/workflows/ci.yml
@@ -4,7 +4,7 @@ on:
4
push:
5
branches: [master]
6
pull_request:
7
- branches: [master]
+ types: [opened, reopened, synchronize]
8
9
jobs:
10
unit_tests:
@@ -31,3 +31,7 @@ jobs:
31
run: cfbs --check pretty ./cfbs.json
32
- name: Linting
33
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