update deps and upper bound policy_sentry #654
Workflow file for this run
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
# .github/workflows/test.yml | |
name: Test | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
steps: | |
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 | |
- name: Setup Python 3.7 | |
uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 # v4.7.0 | |
with: | |
python-version: '3.7' | |
- name: Install dependencies | |
run: | | |
make setup-dev | |
- name: Install the package to make sure nothing is randomly broken | |
run: | | |
make install | |
- name: Run pytest (unit tests) and bandit (security test) | |
run: | | |
make security-test | |
make test | |
- name: Run mypy (static type check) | |
run: | | |
make type-check | |
python-version: | |
if: github.event_name == 'pull_request' | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
strategy: | |
fail-fast: true | |
matrix: | |
python: ['3.8', '3.9', '3.10', '3.11', '3.12'] | |
steps: | |
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 | |
- uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 # v4.7.0 | |
with: | |
python-version: ${{ matrix.python }} | |
allow-prereleases: true | |
- name: Install dependencies | |
run: | | |
make setup-dev | |
- name: Install the package to make sure nothing is randomly broken | |
run: | | |
make install | |
- name: Run pytest (unit tests) and bandit (security test) | |
run: | | |
make test |