verbose pre-commit #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "ci" | |
on: | |
push | |
jobs: | |
test: | |
# The type of runner that the job will run on | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
# mosek is not yet ready for '3.11' | |
os: [ ubuntu-latest, windows-latest, macos-latest ] | |
python-version: ['3.9', '3.10', '3.11' ] | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
- uses: cvxgrp/.github/actions/test@main | |
with: | |
python-version: ${{ matrix.python-version }} | |
source-folder: "dsp" |