tests #1247
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: 'Python ${{ matrix.python-version }} Django ${{ matrix.django }}' | |
runs-on: ubuntu-latest | |
env: | |
PYTHONUNBUFFERED: 1 | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.11", "3.10", "3.9"] | |
django: ["4.2", "4.1", "3.2"] | |
steps: | |
- name: Checkout | |
run: | | |
echo $GITHUB_REF $GITHUB_SHA | |
git clone --depth 1 https://github.com/$GITHUB_REPOSITORY.git . | |
git fetch origin $GITHUB_SHA:temporary-ci-branch | |
git checkout $GITHUB_SHA || (git fetch && git checkout $GITHUB_SHA) | |
- name: 'Set up Python ${{ matrix.python-version }}' | |
uses: actions/setup-python@v4 | |
# https://github.com/marketplace/actions/setup-python | |
with: | |
python-version: '${{ matrix.python-version }}' | |
cache: 'pip' # caching pip dependencies | |
cache-dependency-path: '**/poetry.lock' | |
- name: 'Bootstrap Poetry' | |
run: make install-poetry | |
- name: 'Update PATH for Poetry' | |
run: echo "$HOME/.local/bin" >> $GITHUB_PATH | |
- name: 'Install package' | |
run: make install | |
- name: 'List installed packages' | |
run: poetry run pip freeze | |
- name: 'List all tox test environments' | |
run: make tox-listenvs | |
- name: 'Install Browsers for Playwright tests' | |
run: make playwright-install | |
- name: 'Run tests with Python ${{ matrix.python-version }} Django ${{ matrix.django }}' | |
run: poetry run tox -e python-django${{ matrix.django }} | |
- name: Upload coverage | |
uses: codecov/codecov-action@v3 | |
# https://github.com/marketplace/actions/codecov |