Update certifi package #1292
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
name: Run tests | |
on: [pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
services: | |
rabbitmq: | |
image: rabbitmq:3.8 | |
ports: | |
- 5672:5672 | |
redis: | |
image: redis:6.0 | |
ports: | |
- 6379:6379 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: 3.9.15 | |
- uses: abatilo/[email protected] | |
with: | |
poetry-version: 1.4.2 | |
- name: Install dependancies | |
run: | | |
poetry install | |
- name: Lint | |
run: | | |
poetry run black --check . | |
poetry run isort -c . | |
poetry run mypy . | |
poetry run flake8 | |
- name: Test | |
run: | | |
poetry run pytest |