Skip to content

Bump cryptography from 40.0.2 to 41.0.3 #76

Bump cryptography from 40.0.2 to 41.0.3

Bump cryptography from 40.0.2 to 41.0.3 #76

Workflow file for this run

name: Django CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main", "develop" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.9]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run Migrate
run: |
python manage.py migrate
- name: Run Tests
env: # Set the secret as an input
SECRET_KEY: ${{ secrets.SECRET_KEY }}
ALLOW_ACCOUNT_CREATION: True
run: |
python manage.py test --settings seven23.settings_tests