Skip to content

Bump actions/setup-dotnet from 4.1.0 to 4.2.0 #158

Bump actions/setup-dotnet from 4.1.0 to 4.2.0

Bump actions/setup-dotnet from 4.1.0 to 4.2.0 #158

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
env:
DOTNET_NOLOGO: true
jobs:
build:
name: Linux
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4.2.2
- name: Setup .NET SDK
uses: actions/setup-dotnet@v4.2.0
with:
dotnet-version: 8.0.x
- name: Build
run: dotnet build src --configuration Release
- name: Run tests
run: dotnet test src --configuration Release