Skip to content

Bump sentry-sdk from 2.7.1 to 2.8.0 #304

Bump sentry-sdk from 2.7.1 to 2.8.0

Bump sentry-sdk from 2.7.1 to 2.8.0 #304

Workflow file for this run

name: Run tests
on:
pull_request:
branches:
- main
jobs:
pytest:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install Python dependencies
run: |
pip install --upgrade pip
pip install -r requirements.txt -r requirements-dev.txt
- name: Lint python code
run: flake8 --ignore=E501,F401,E402,F811,E731,F403,E721 .
- name: Run django checks
run: ./manage.py check
- name: Check migrations
run: ./manage.py makemigrations --dry-run --check
- name: Run tests
run: FAKE_REDIS=1 DEBUG=1 py.test