Skip to content

Raise the required target framework #112

Raise the required target framework

Raise the required target framework #112

name: continuous-integration
on: push
defaults:
run:
shell: pwsh
jobs:
test:
runs-on: windows-latest
steps:
- name: Fetch sources
uses: actions/checkout@v6
- name: Set up .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: 10
- name: Set up PowerShell
run: |
Invoke-WebRequest "https://aka.ms/install-powershell.ps1" -OutFile Install-PowerShell.ps1
./Install-PowerShell.ps1
Add-Content "$Env:GITHUB_PATH" "$Env:LOCALAPPDATA\Microsoft\powershell"
- name: Install dependencies
run: ./Invoke.ps1 Install
- name: Run tests
run: ./Invoke.ps1 Test