Use a single MetaGraph
that combines graph_flow
and graph_control
#690
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: QGIS Tests | |
on: | |
push: | |
branches: [main] | |
paths-ignore: [".teamcity/**"] | |
tags: ["*"] | |
pull_request: | |
merge_group: | |
jobs: | |
test-qgis: | |
name: "Test" | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: .docker | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Launching docker compose | |
run: ./start.sh | |
- name: Running tests | |
run: ./test.sh | |
- name: Stopping docker compose | |
run: ./stop.sh |