Nightly Regression Test #463
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: Nightly Regression Test | |
on: | |
workflow_dispatch: # run on request (no need for PR) | |
schedule: | |
- cron: "0 15 * * 2-6" # Every day at 12:00 AM in Korea time | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
nightly_regression_test: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: ['ubuntu-20.04', 'windows-2022'] | |
python-version: ['3.9', '3.10', '3.11'] | |
include: | |
- os: "ubuntu-20.04" | |
tox-env-os: "lin" | |
- os: "windows-2022" | |
tox-env-os: "win" | |
- python-version: "3.9" | |
tox-env-py: "39" | |
- python-version: "3.10" | |
tox-env-py: "310" | |
- python-version: "3.11" | |
tox-env-py: "311" | |
name: nightly regression test (${{ matrix.os }}, Python ${{ matrix.python-version }}) | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Installing Rust toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
override: true | |
- name: Installing python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: pip | |
- name: Installing dependencies | |
run: | | |
python -m pip install tox | |
- name: Nightly regression testing | |
run: | | |
# python -m pytest -v --html=nightly_regression_test_report.html | |
tox -e tests-py${{ matrix.tox-env-py }}-${{ matrix.tox-env-os }} | |
- name: Upload test results | |
uses: actions/upload-artifact@v4 | |
with: | |
name: nightly-results-py${{ matrix.tox-env-py }}-${{ matrix.tox-env-os }} | |
path: .tox/results-tests-py${{ matrix.tox-env-py }}-${{ matrix.tox-env-os }}.csv | |
call-notify-to-teams: | |
needs: [nightly_regression_test] | |
if: | | |
always() && | |
contains(needs.*.result, 'failure') | |
uses: ./.github/workflows/notify_teams.yml | |
secrets: inherit |