Skip to content

WIP

WIP #89

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"
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