Minor #38
This file contains hidden or 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: Tests | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| tests: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| docker_tags: [ ltr, latest ] | |
| fail-fast: false | |
| env: | |
| QGIS_TEST_VERSION: ${{ matrix.docker_tags }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Pull QGIS Docker image | |
| run: docker pull qgis/qgis:${QGIS_TEST_VERSION} | |
| - name: Run tests with Docker | |
| run: docker compose -f .docker/docker-compose.gh.yml run qgis /usr/src/ThRasE/.docker/run-docker-tests.sh | |