Skip to content

[1.0.0-alpha1] Upgrade to psake 5.0.0 with task caching and LLM output #102

[1.0.0-alpha1] Upgrade to psake 5.0.0 with task caching and LLM output

[1.0.0-alpha1] Upgrade to psake 5.0.0 with task caching and LLM output #102

Workflow file for this run

name: Test
on:
push:
branches: [ main ]
pull_request:
workflow_dispatch:
jobs:
test:
name: Test
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v4
- name: Test
shell: pwsh
env:
DEBUG: ${{ runner.debug == '1' }}
run: |
if($env:DEBUG -eq 'true' -or $env:DEBUG -eq '1') {
$DebugPreference = 'Continue'
}
./build.ps1 -Task Test -Bootstrap
test_powershell:
name: Test
runs-on: windows-latest
strategy:
fail-fast: true
steps:
- uses: actions/checkout@v4
- name: Test
shell: powershell
env:
DEBUG: ${{ runner.debug == '1' }}
run: |
if($env:DEBUG -eq 'true' -or $env:DEBUG -eq '1') {
$DebugPreference = 'Continue'
}
./build.ps1 -Task Test -Bootstrap