We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 667ac99 commit 99a431bCopy full SHA for 99a431b
.github/workflows/ci.yml
@@ -66,12 +66,17 @@ jobs:
66
git checkout $GITHUB_SHA
67
echo "\q" | cargo pgrx run
68
psql -p 28816 -h localhost -d pgml -P pager -c "ALTER EXTENSION pgml UPDATE;"
69
- - name: Run tests
+ - name: Unit tests
70
env:
71
CI_BRANCH: ${{ steps.current_version.outputs.CI_BRANCH }}
72
if: steps.pgml_extension_changed.outputs.PGML_EXTENSION_CHANGED_FILES != '0'
73
run: |
74
cargo pgrx test
75
+ - name: Integration tests
76
+ env:
77
+ CI_BRANCH: ${{ steps.current_version.outputs.CI_BRANCH }}
78
+ if: steps.pgml_extension_changed.outputs.PGML_EXTENSION_CHANGED_FILES != '0'
79
+ run: |
80
cargo pgrx start
81
psql -p 28816 -h 127.0.0.1 -d pgml -P pager -f tests/test.sql
82
cargo pgrx stop
0 commit comments