Freezing OS versions due to GH Action issue #161
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: Django CI | |
on: [pull_request] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
python: ["3.7", "3.8", "3.9"] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Install Selenium Chrome Driver (OSX) | |
if: runner.os == 'macOs' | |
run: brew install chromedriver --cask | |
- 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 |