Skip to content

Bump actions/setup-dotnet from 4.0.1 to 4.1.0 #424

Bump actions/setup-dotnet from 4.0.1 to 4.1.0

Bump actions/setup-dotnet from 4.0.1 to 4.1.0 #424

Workflow file for this run

name: .NET
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/[email protected]
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore ./Vipr.sln
- name: Build
run: dotnet build ./Vipr.sln --no-restore
- name: Test
run: dotnet test ./Vipr.sln --no-build --verbosity normal