Skip to content

. e Bump actions/checkout from 4 to 5 #1014

. e Bump actions/checkout from 4 to 5

. e Bump actions/checkout from 4 to 5 #1014

Workflow file for this run

name: Test
on: [push, pull_request, workflow_dispatch]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
os:
- macos-latest
- ubuntu-latest
- windows-latest
steps:
- uses: actions/checkout@v5
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Test
run: |
./build_and_test.sh
shell: bash
- name: Publish Test Report
uses: mikepenz/action-junit-report@v5
if: always()
with:
report_paths: '**/test-reports/*.xml'
detailed_summary: true