[1.0.0-alpha1] Upgrade to psake 5.0.0 with task caching and LLM output #100
This file contains hidden or 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: [ $default-branch ] | ||
| pull_request: | ||
| workflow_dispatch: | ||
| jobs: | ||
| test: | ||
| name: Test | ||
| runs-on: ${{ matrix.os }} | ||
| strategy: | ||
| fail-fast: false | ||
| matrix: | ||
| os: [ubuntu-latest, windows-latest, macOS-latest] | ||
| shell: [pwsh] | ||
| include: | ||
| - os: windows-latest | ||
| shell: powershell | ||
| name: 'Windows PowerShell 5.1' | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - name: Test | ||
| shell: ${{ matrix.shell }} | ||
| env: | ||
| DEBUG: ${{ runner.debug == '1' }} | ||
| run: | | ||
| if($env:DEBUG -eq 'true' -or $env:DEBUG -eq '1') { | ||
| $DebugPreference = 'Continue' | ||
| } | ||
| ./build.ps1 -Task Test -Bootstrap | ||