build(deps): bump sentry-sdk from 1.3.1 to 1.33.1 in /app #1104
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: 'Install, lint, test & build' | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.x | |
- name: Linting | |
run: bash cleanup.sh | |
- name: Create Docker Looplijsten Backend network | |
run: docker network create looplijsten_backend | |
- name: Create Docker Top and Zaak Backend Bridge network | |
run: docker network create top_and_zaak_backend_bridge | |
- name: Build Docker image | |
run: docker-compose up -d | |
- name: Run Tests | |
run: docker-compose exec -T api python manage.py test |