[tests] More tests for compressed files #23
Workflow file for this run
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: Build docker image | |
run: docker build . -f .docker/Dockerfile -t docker_qgis --build-arg QGIS_TEST_VERSION=${QGIS_TEST_VERSION} | |
- name: Test on QGIS | |
run: docker run --rm -v ${GITHUB_WORKSPACE}:/usr/src docker_qgis |