Bump debugpy from 1.8.8 to 1.8.9 in /requirements #704
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: Continuous Integration | |
on: | |
pull_request: | |
branches: | |
- main | |
- 'feature/**' | |
- 'staging/4*' | |
jobs: | |
test-prod: | |
name: "Test: Productive start" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build container | |
run: make build | |
- name: Create secret | |
run: mkdir secrets && echo -n "openslides" > secrets/postgres_password | |
- name: Start container | |
run: | | |
source .env | |
docker compose up -d --wait | |
- name: Test that reader is up and running | |
run: curl -I http://localhost:9010/ | |
- name: Test that writer is up and running | |
run: curl -I http://localhost:9011/ | |
tests: | |
name: "Tests" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Execute tests | |
run: make run-ci | |
test-full-system: | |
name: "Full System Tests" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Start containers | |
run: make run-dev-standalone | |
- name: Execute tests | |
run: make run-full-system-tests-check | |
- name: Stop tests | |
run: make stop-dev |