Skip to content

SPDX: license declaration cleanup (#62) #285

SPDX: license declaration cleanup (#62)

SPDX: license declaration cleanup (#62) #285

Workflow file for this run

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@v5
- 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