Skip to content

Bump actions/setup-dotnet from 4.3.0 to 5.0.1 #192

Bump actions/setup-dotnet from 4.3.0 to 5.0.1

Bump actions/setup-dotnet from 4.3.0 to 5.0.1 #192

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
push:
branches:
- main
workflow_dispatch:
jobs:
test:
name: Run tests
strategy:
matrix:
os: [ubuntu-24.04, windows-2022, macos-14]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- name: Setup .NET
uses: actions/setup-dotnet@2016bd2012dba4e32de620c46fe006a3ac9f0602
with:
dotnet-version: "6.0.428"
cache: true
cache-dependency-path: "**/packages.lock.json"
- name: Restore packages
run: dotnet restore --locked-mode
- name: Run tests
run: dotnet test