We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 055798f commit bafd82dCopy full SHA for bafd82d
.github/workflows/unittest.yaml
@@ -1,6 +1,12 @@
1
name: Run unit tests
2
run-name: Testing ${{ github.actor }}'s changes
3
-on: [pull_request]
+on:
4
+ push:
5
+ branches:
6
+ - master
7
+ pull_request:
8
9
10
jobs:
11
unit-test:
12
runs-on: ubuntu-latest
@@ -20,6 +26,6 @@ jobs:
20
26
- uses: actions/setup-python@v4
21
27
with:
22
28
python-version: "3.11"
23
- - run: pip install antlr4-python3-runtime==4.11.1 psycopg2
29
+ - run: python -m pip install antlr4-python3-runtime==4.11.1 psycopg2
24
30
- name: Run tests
25
31
run: python -m unittest -v test_age_py test_agtypes.py
0 commit comments