Skip to content

Bump actions/checkout from 4.1.7 to 4.2.1 #50

Bump actions/checkout from 4.1.7 to 4.2.1

Bump actions/checkout from 4.1.7 to 4.2.1 #50

Workflow file for this run

name: CI
on:
push:
branches:
- hotfix
- master
pull_request:
workflow_dispatch:
env:
DOTNET_NOLOGO: true
jobs:
build:
name: ${{ matrix.name }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: windows-2022
name: Windows
fail-fast: false
steps:
- name: Checkout
uses: actions/[email protected]
with:
fetch-depth: 0
- name: Setup .NET SDK
uses: actions/[email protected]
with:
dotnet-version: 8.0.x
- name: Build
shell: pwsh
run: . .\build.ps1; Build-Solution -Configuration Release -Platform 'Any CPU'
- name: Tests
shell: pwsh
run: . .\build.ps1; Run-Tests -Configuration Release
timeout-minutes: 20