WIP #89
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: "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" | |
fail-fast: false | |
steps: | |
- name: "Checkout" | |
uses: "actions/checkout@v4" | |
- name: "Linux / macOS" | |
id: linux | |
if: "runner.os != 'windows'" | |
shell: "bash" | |
run: | | |
env | sort | |
bash ./finder.sh false | |
bash ./finder.sh true | |
test-windows: | |
name: "Test on ${{ matrix.config.os-name }}" | |
runs-on: "${{ matrix.config.runner }}" | |
strategy: | |
matrix: | |
config: | |
- os-name: "Windows" | |
runner: "windows-latest" | |
test-label: "ci-test-windows" | |
steps: | |
- name: "Checkout" | |
uses: "actions/checkout@v4" | |
- name: "Windows" | |
shell: "powershell" | |
run: | | |
dir env: | |
& .\finder.ps1 false | |
& .\finder.ps1 true |