Skip to content

Raise an error

Raise an error #6

Workflow file for this run

name: tests
on:
merge_group:
push:
branches-ignore:
# temporary GH branches relating to merge queues (jaraco/skeleton#93)
- gh-readonly-queue/**
tags:
# required if branches-ignore is supplied (jaraco/skeleton#103)
- '**'
pull_request:
jobs:
test:
strategy:
# https://blog.jaraco.com/efficient-use-of-ci-resources/
fail-fast: false
matrix:
python:
- "3.8"
- "3.12"
platform:
- windows-latest
runs-on: ${{ matrix.platform }}
continue-on-error: ${{ matrix.python == '3.13' }}
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Run tests for ${{ matrix.python }} (${{ runner.os }})
run: pipx run 'coherent.test>=0.7.0'
env:
# See coherent-oss/coherent.build#21
GH_TOKEN: ${{ github.token }}