996 update splashscreenpy script after running the script the splash screen still shows the wrong version number #1083
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: 🧪 EnMAP-Box Tests | |
on: | |
push: | |
branches: | |
- main | |
- release-** | |
- refactor_environments | |
- release_** | |
pull_request: | |
branches: | |
- '**' | |
- release-** | |
- release_** | |
release: | |
types: [published] | |
jobs: | |
# Run EnMAP-Box tests | |
test: | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
qgis_version: [3.34, 3.36, 3.38] | |
fail-fast: false | |
env: | |
QGIS_TEST_VERSION: ${{ matrix.qgis_version}} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Docker Environment Info | |
run: | | |
# ls -la .docker/ | |
# ls -la | |
# ls -la ~ | |
# ls -la /usr/bin | |
docker --version | |
lsb_release -a | |
- name: Python Packages Info | |
run: | | |
python3 --version | |
pip list | |
- name: Test EnMAP-Box on QGIS | |
run: | | |
chmod +x .env/docker/run_docker_tests.sh | |
ls -la .env/docker | |
docker compose -f .env/docker/docker-compose.gh.yml run qgis /usr/src/.env/docker/run_docker_tests.sh -n auto |