Skip to content

build(deps): bump cycjimmy/semantic-release-action from 4.0.0 to 4.1.0 #210

build(deps): bump cycjimmy/semantic-release-action from 4.0.0 to 4.1.0

build(deps): bump cycjimmy/semantic-release-action from 4.0.0 to 4.1.0 #210

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: '6.0.401'
SDK_VERSION_5: '5.0.408'
SDK_VERSION_3: '3.1.422'
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_6 }}
${{ env.SDK_VERSION_5 }}
${{ env.SDK_VERSION_3 }}
- 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"