Skip to content
This repository has been archived by the owner on Mar 3, 2024. It is now read-only.

build(deps): bump actions/setup-dotnet from 3 to 4 #20

build(deps): bump actions/setup-dotnet from 3 to 4

build(deps): bump actions/setup-dotnet from 3 to 4 #20

Workflow file for this run

name: 'Tests'
on:
workflow_dispatch: # To can dispatch manually
pull_request:
types: [opened, reopened, edited, synchronize]
branches:
- main
env:
SDK_VERSION: '6.0.302'
jobs:
test-project:
name: "Test nuget"
runs-on: ubuntu-latest
steps:
- name: "Checkout"
uses: actions/checkout@v4
- name: "Setup .NET"
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ env.SDK_VERSION }}
- name: "Restore dependencies"
run: dotnet restore
- name: "Build"
run: dotnet build --configuration Release --no-restore
- name: "Test"
run: dotnet test --configuration Release --no-build --verbosity normal --logger "console;verbosity=detailed"