Skip to content

Bump sentry-sdk from 1.14.0 to 2.8.0 #33

Bump sentry-sdk from 1.14.0 to 2.8.0

Bump sentry-sdk from 1.14.0 to 2.8.0 #33

Workflow file for this run

name: CI
permissions:
packages: write
on:
push:
branches: [main]
pull_request:
env:
DOCKER_IMAGE: ghcr.io/sourcelair/castor:${{ github.sha }}
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: pipx install poetry==1.2.2
- uses: actions/setup-python@v4
with:
python-version: "3.11"
cache: poetry
- run: poetry install
- run: poetry run black --check .
- run: poetry run mypy --check .
build:
needs: test
uses: ./.github/workflows/build.yml
with:
image: ghcr.io/sourcelair/castor:${{ github.sha }}