prepare d42 #184
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: Test | |
on: | |
push: | |
branches: | |
- master | |
- develop | |
pull_request: | |
jobs: | |
# lint: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v2 | |
# - uses: actions/setup-python@v2 | |
# | |
# - name: Install dependencies | |
# run: | | |
# python -m pip install --upgrade pip pre-commit | |
# - name: | |
# run: pre-commit run --all-files | |
test: | |
runs-on: ubuntu-latest | |
services: | |
postgres: | |
image: postgres:12 | |
env: | |
POSTGRES_USER: postgres | |
POSTGRES_PASSWORD: postgres | |
POSTGRES_DB: aurora | |
ports: | |
- 5432:5432 | |
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 | |
strategy: | |
fail-fast: false | |
matrix: | |
django-version: [ "3.2", ] | |
python-version: [ "3.9", ] | |
experimental: [ false ] | |
include: | |
- django-version: "4.2" | |
python-version: "3.9" | |
experimental: true | |
continue-on-error: ${{ matrix.experimental }} | |
env: | |
DATABASE_URL: postgres://postgres:[email protected]:5432/aurora | |
STATIC_URL: /static/ | |
STATIC_ROOT: | |
PY_VER: ${{ matrix.python-version}} | |
DJ_VER: ${{ matrix.django-version}} | |
SECRET_KEY: super-secret-key | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install poetry | |
run: python -m pip install --upgrade poetry | |
- name: Install dependencies | |
run: poetry install | |
- name: Run tests | |
run: poetry run pytest tests/ --create-db | |
- uses: codecov/codecov-action@v1 | |
with: | |
verbose: false # optional (default = false) |