Skip to content

Bump actions/setup-dotnet from 4.2.0 to 4.3.0 (#22) #127

Bump actions/setup-dotnet from 4.2.0 to 4.3.0 (#22)

Bump actions/setup-dotnet from 4.2.0 to 4.3.0 (#22) #127

Workflow file for this run

name: Continuous integration
on:
push:
paths-ignore:
- '**.md'
jobs:
build:
name: Build and Test
runs-on: ubuntu-latest
timeout-minutes: 3
env:
DOTNET_CLI_TELEMETRY_OPTOUT: true
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
DOTNET_NOLOGO: true
steps:
- name: Clone repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
# Ubuntu runner only has native support for .NET 8
- name: Setup .NET 9 SDK
uses: actions/setup-dotnet@3951f0dfe7a07e2313ec93c75700083e2005cbab # v4.3.0
with:
dotnet-version: 9.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore --configuration Release
- name: Test
run: dotnet test --no-build --configuration Release