Skip to content

Initial commit

Initial commit #118

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: "detector"
uses: "kurtmckee/detect-pythons@main"
- name: "Print it!"
shell: "bash"
run: |
echo '${{ steps.detector.outputs.python-identifiers }}'