Skip to content

Commit

Permalink
Use Powershell 7 in Windows GitHub actions runners
Browse files Browse the repository at this point in the history
  • Loading branch information
jan-revay committed Mar 9, 2024
1 parent 0dd99c8 commit a33b1ce
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,19 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-2022] # TODO add a newer runner when avaliable
os: ["windows-2022", "windows-latest"] # TODO add a newer runner when available

steps:
- name: "checkout repo"
uses: actions/checkout@v4
- name: "Install `winget`"
shell: powershell
shell: pwsh
run: choco install winget
- name: "Run `packages_install.ps1` separatelly (so that it does not pollute logs)"
- name: "Run `packages_install.ps1` separately (so that it does not pollute logs)"
shell: powershell
run: .\Windows_10\packages_install.ps1
- name: "Run `run_all.ps1`"
shell: powershell
shell: pwsh
run: .\Windows_10\run_all.ps1

# TODO add idempotency test
# TODO add idempotence test

0 comments on commit a33b1ce

Please sign in to comment.