Skip to content

Add Django LogEntry for changing feature flag states. #1280

Add Django LogEntry for changing feature flag states.

Add Django LogEntry for changing feature flag states. #1280

Workflow file for this run

name: Test
on:
push:
branches:
- master
pull_request:
schedule:
- cron: '0 8 * * *'
jobs:
test:
name: 'Python ${{ matrix.python-version }} Django ${{ matrix.django-version }}'
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.11", "3.10", "3.9"]
django-version: ["4.2", "4.1"]
env:
PYTHONUNBUFFERED: 1
PYTHONWARNINGS: always
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-version }}'
run: poetry run tox -e $(echo py${{ matrix.python-version }}-django${{ matrix.django-version }} | tr -d .)
- name: 'Upload coverage report'
run: bash <(curl -s https://codecov.io/bash)