Update mundialis/actinia Docker tag to v2.9.1 #200
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: Python code quality check | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
# The branches below must be a subset of the branches above | |
branches: [ main ] | |
jobs: | |
integration-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Start containers | |
run: docker-compose -f "docker/docker-compose-test.yml" up -d --build | |
- name: List running docker | |
run: docker ps | |
- name: Running tests | |
run: make test | |
- name: Stop containers | |
run: docker-compose -f "docker/docker-compose-test.yml" down |