Skip to content

WIP

WIP #108

Workflow file for this run

name: "Test"
on:
push:
branches:
- "main"
jobs:
test-linux:
name: "Test on ${{ matrix.config.os-name }}"
runs-on: "${{ matrix.config.runner }}"
strategy:
matrix:
config:
- os-name: "Linux"
runner: "ubuntu-latest"
test-label: "ci-test-linux"
- os-name: "macOS"
runner: "macos-latest"
test-label: "ci-test-macos"
- os-name: "Windows"
runner: "windows-latest"
test-label: "ci-test-windows"
fail-fast: false
steps:
- name: "Use it!"
id: "finder"
uses: "kurtmckee/setup-python-version-detector@main"
- name: "Print it!"
shell: "bash"
run: |
echo '${{ steps.finder.outputs.python-identifiers }}'