Skip to content

fix: Update author name and copyright in nuspec file #42

fix: Update author name and copyright in nuspec file

fix: Update author name and copyright in nuspec file #42

Workflow file for this run

name: Main Branch Build
on:
push:
branches: [main]
paths-ignore:
- "**/*.md"
- "docs/**"
- ".gitignore"
jobs:
build:
name: Build on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore /p:TreatWarningsAsErrors=true
- name: Test
run: dotnet test --no-build --verbosity normal
- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
name: build-artifacts-${{ matrix.os }}
path: |
src/DotNetApiDiff/bin/Debug/net8.0/
tests/DotNetApiDiff.Tests/bin/Debug/net8.0/