Skip to content

Replace workflows with actions #1

Replace workflows with actions

Replace workflows with actions #1

Workflow file for this run

name: Check CI
on: [pull_request, workflow_dispatch]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
codespell:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: codespell-project/[email protected]
ubuntu:
needs: codespell
strategy:
fail-fast: false
matrix:
python_version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
os: [ubuntu-latest, macOS-latest]
runs-on: ${{ matrix.os }}
timeout-minutes: 15
steps:
- uses: ./.github/actions/tests
with:
operating_system: ${{ matrix.os }}
python_version: ${{ matrix.python_version }}