Revert "adding TaskModelAdmin filter to display only main tasks (not … #8
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 | |
pull_request: | |
schedule: | |
- cron: '0 8 * * *' | |
jobs: | |
test: | |
name: '${{ matrix.os }} Python ${{ matrix.python-version }} Django ${{ matrix.django }}' | |
runs-on: ${{ matrix.os }} | |
env: | |
PYTHONUNBUFFERED: 1 | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macOS-latest] # TODO: windows-latest | |
python-version: ["3.10", "3.9", "3.8"] | |
django: ["3.2", "4.0"] | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: 'fetch master' | |
run: | | |
git fetch origin master | |
- name: 'Set up Python ${{ matrix.python-version }}' | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '${{ matrix.python-version }}' | |
- name: 'Install package' | |
run: | | |
make install-poetry | |
poetry lock | |
poetry show --tree | |
make install | |
- name: 'List installed packages' | |
run: | | |
poetry run pip freeze | |
- name: 'List all tox test environments' | |
run: | | |
make tox-listenvs | |
- name: 'Run tests on ${{ matrix.os }} with Python ${{ matrix.python-version }} Django ${{ matrix.django }}' | |
run: | | |
poetry run tox -e python-django${{ matrix.django }} | |
env: | |
PYTEST_ADDOPTS: "-c pytest-ci.ini" | |
- name: 'Upload coverage report' | |
run: bash <(curl -s https://codecov.io/bash) |