Skip to content

Nightly-Regression Tests #221

Nightly-Regression Tests

Nightly-Regression Tests #221

Workflow file for this run

name: Nightly-Regression Tests
on:
workflow_dispatch: # run on request (no need for PR)
schedule:
- cron: "0 0 * * *"
jobs:
Tox:
runs-on: [self-hosted, linux, x64]
strategy:
max-parallel: 1
if: github.ref == 'refs/heads/main'
steps:
- name: CHECKOUT REPOSITORY
uses: actions/checkout@v2
- name: Install Tox
run: pip install tox
- name: Coverage
run: tox -e nightly
- name: Upload coverage result
uses: actions/upload-artifact@v2
with:
name: coverage
path: .tox/coverage.xml