Skip to content

[Snyk] Security upgrade certifi from 2019.11.28 to 2023.7.22 #155

[Snyk] Security upgrade certifi from 2019.11.28 to 2023.7.22

[Snyk] Security upgrade certifi from 2019.11.28 to 2023.7.22 #155

Workflow file for this run

name: Django CI
on: [pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
python: ["3.6", "3.7", "3.8"]
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install Selenium Chrome Driver (OSX)
if: runner.os == 'macOs'
run: brew cask install chromedriver
- name: Setup Python ${{ matrix.python }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run tests
env:
SECRET_KEY: fake-secret-key
run: |
cp .env.example .env
python manage.py migrate
python manage.py test