Fixed the bug of setting the iflo direction as the extension of the c… #1536
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: Auto Tests | |
on: [push] | |
jobs: | |
linux_tests: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Log in to GitHub Container Registry | |
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u flo-2dsoftware --password-stdin | |
- name: Pull Docker image from GitHub Container Registry | |
run: docker pull ghcr.io/flo-2dsoftware/qgis-flo-2d-plugin | |
- name: Run tests in Docker | |
run: | | |
docker run --rm \ | |
-v ${{ github.workspace }}:/app \ | |
-w /app \ | |
-e QT_QPA_PLATFORM=offscreen \ | |
-e QGIS_AUTH_DB_DIR_PATH=./auth \ | |
ghcr.io/flo-2dsoftware/qgis-flo-2d-plugin \ | |
python3 -m unittest discover --verbose |