Skip to content

Bump actions/checkout from 3.3.0 to 4.2.2 #143

Bump actions/checkout from 3.3.0 to 4.2.2

Bump actions/checkout from 3.3.0 to 4.2.2 #143

Workflow file for this run

name: CI
on:
push:
tags:
- '[0-9].[0-9]+.[0-9]'
- '[0-9].[0-9]+.[0-9]+-*'
branches:
- master
- release-*
pull_request:
workflow_dispatch:
env:
DOTNET_NOLOGO: true
jobs:
build:
name: Build and test on ${{ matrix.name }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: windows-2019
name: Windows
- os: ubuntu-20.04
name: Linux
fail-fast: false
steps:
- name: Checkout
uses: actions/checkout@v4.2.2
with:
fetch-depth: 0
- name: Setup .NET SDK
uses: actions/setup-dotnet@v4.1.0
with:
dotnet-version: 8.0.x
- name: Build
run: dotnet build src --configuration Release
- name: Tests
run: dotnet test src --configuration Release --no-build