This repository was archived by the owner on Oct 3, 2025. It is now read-only.
Bump sentry-sdk from 1.14.0 to 1.45.1 #67
This file contains hidden or 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 |