Skip to content

Latest Tests

Latest Tests #365

Workflow file for this run

name: Latest Tests
on:
workflow_call:
workflow_dispatch:
schedule:
- cron: 0 0 * * *
jobs:
tests-latest:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11"]
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Run latest tests
run: |
pip install nox[uv]
nox -s tests_run_latest-${{ matrix.python-version }}
- name: Test Summary
uses: test-summary/action@v2
with:
paths: "test-reports/${{ matrix.python-version }}/.junitxml.*.xml"
show: "fail"
if: always()