Skip to content

Nightly Test

Nightly Test #419

Workflow file for this run

name: Nightly Test
on:
schedule:
- cron: '30 7 * * *'
workflow_dispatch:
concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true
jobs:
test:
name: "stressful bad requests test"
runs-on: ${{ matrix.os }}
timeout-minutes: 45
strategy:
matrix:
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- uses: ./.github/actions/cache
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[dev,mixin]
make dev
- name: Test
run: |
python -m tests.bad_req