Skip to content

- r Extract variable #1220

- r Extract variable

- r Extract variable #1220

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"
- "3.14"
os:
- macos-latest
- ubuntu-latest
- windows-latest
steps:
- uses: actions/checkout@v6
- run: echo "${{ matrix.python-version }}" > .python-version
- uses: jdx/mise-action@v3
- run: mise install # retry for network issues
- run: mise pip-install || mise pip-install # retry for network issues
- run: ./build_and_test.sh
shell: bash
- name: Publish Test Report
uses: mikepenz/action-junit-report@v6
if: always()
with:
detailed_summary: true