Bump cryptography from 41.0.4 to 41.0.6 #217
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: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
services: | |
db: | |
image: postgres:12.3-alpine | |
env: | |
POSTGRES_USER: shynet_db_user | |
POSTGRES_PASSWORD: shynet_db_user_password | |
POSTGRES_DB: shynet_db | |
ports: | |
- 5432:5432 | |
strategy: | |
max-parallel: 4 | |
matrix: | |
python-version: [3.9] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Run image | |
uses: abatilo/[email protected] | |
with: | |
poetry-version: 1.2.2 | |
- name: Preinstall dependencies (temporary) | |
run: poetry run pip install "Cython<3.0" "pyyaml==5.4.1" --no-build-isolation | |
- name: Install dependencies | |
run: poetry install | |
- name: Django Testing project | |
run: | | |
cp TEMPLATE.env .env | |
poetry run ./shynet/manage.py test |