Bump debugpy from 1.6.7 to 1.8.0 in /requirements #418
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 ] | |
jobs: | |
test-prod: | |
name: "Test: Productive start" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- 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 | |
- name: wait for container to be available | |
run: docker-compose exec -T reader wait-for-it -t 0 "localhost:9010" | |
- 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@v3 | |
- name: Execute tests | |
run: make run-ci | |
test-full-system: | |
name: "Full System Tests" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- 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 |