Bump sentry-sdk from 1.14.0 to 2.8.0 #64
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: Run tests | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build image for web service | |
run: docker compose build web | |
- name: Build image for db service | |
run: docker compose pull db | |
- name: Run tests | |
run: ./bin/run pytest |