[tests] Print versions being used; add test for PG: copying JSON to J… #47
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Continuous integration | |
on: | |
push: | |
branches: | |
- master | |
- release-** | |
pull_request: | |
branches: | |
- "**" | |
release: | |
types: ["prereleased", "released"] | |
jobs: | |
# Run unit tests | |
test: | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
qgis_version: [final-3_28_13] # We could eventually add more, e.g., latest | |
env: | |
QGIS_TEST_VERSION: ${{ matrix.qgis_version }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Test on QGIS | |
run: docker-compose -f .docker/docker-compose.yml run qgis |