Do not submit: Checking for pwsh install #143
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: Pull Request - Validation | |
on: | |
pull_request: | |
types: [opened, reopened, synchronize] | |
branches-ignore: | |
- '**/graphite-base/**' | |
env: | |
sourcePackageCache: 'Stage/SourcePackages' | |
BUNDLE_OUTPUT_DIRECTORY: 'xcresult-bundles' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
runs-on: ${{ matrix.runner }} | |
strategy: | |
matrix: | |
runner: | |
- cirun-win11-23h2-pro-arm64-16-2024-10-10 | |
- cirun-win11-23h2-pro-arm64-64-2024-10-10 | |
- cirun-win11-23h2-pro-x64-16-2024-10-10 | |
- cirun-win11-23h2-pro-x64-64-2024-10-10 | |
steps: | |
- name: Test | |
shell: pwsh | |
run: | | |
Write-Output "Hello from pwsh!" | |
$PSVersionTable.PSVersion | |