Skip to content

nuget package generation and integration tests project #14

nuget package generation and integration tests project

nuget package generation and integration tests project #14

name: Verify pull request
on:
pull_request:
branches: [ "main" ]
jobs:
build:
name: Verify pull request
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up .NET Core (version from global.json)
uses: actions/setup-dotnet@v4
with:
global-json-file: global.json
- name: dotnet build sources
run: dotnet build src/Sotsera.Sources.Common/Sotsera.Sources.Common.csproj --configuration Release
- name: dotnet test
run: dotnet test --configuration Release
- name: dotnet format
run: dotnet format -v detailed --verify-no-changes