Skip to content

Switch to using PackageLicenseExpression #20

Switch to using PackageLicenseExpression

Switch to using PackageLicenseExpression #20

Workflow file for this run

name: .NET Core
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore -p:ContinuousIntegrationBuild=true
- name: Test
run: dotnet test --configuration Release --no-restore --no-build --verbosity normal
- name: Pack
run: dotnet pack --configuration Release --no-restore --no-build
- name: Publish artifacts
uses: actions/upload-artifact@v3
with:
name: NuGet packages
path: '**/*.nupkg'