Skip to content

Bump actions/checkout from 4.2.2 to 5.0.0 #191

Bump actions/checkout from 4.2.2 to 5.0.0

Bump actions/checkout from 4.2.2 to 5.0.0 #191

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@08c6903cd8c0fde910a37f88322edcfb5dd907a8
- name: Setup .NET
uses: actions/setup-dotnet@3951f0dfe7a07e2313ec93c75700083e2005cbab
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