Skip to content

run-canary-tests

run-canary-tests #1443

name: run-canary-tests
on:
schedule:
- cron: '0 8 * * *'
jobs:
canary_tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install poetry
poetry install --with test
- name: Run Canary Tests
run: poetry run python manage.py test --tag=canary