No longer depend on specific sentry-sdk version #44
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: Tests | |
on: | |
- push | |
concurrency: | |
group: ${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.11 | |
- name: Install poetry | |
uses: abatilo/actions-poetry@v2 | |
with: | |
poetry-version: 1.4.2 | |
- name: Install dependencies | |
run: poetry install --only=dev | |
- name: isort | |
run: poetry run isort --check-only --quiet --settings pyproject.toml . | |
- name: flake8 | |
run: poetry run flake8 | |
- name: black | |
run: poetry run black --check --config pyproject.toml . |