Skip to content

Update project files to include LICENSE and README, and refine packag… #2

Update project files to include LICENSE and README, and refine packag…

Update project files to include LICENSE and README, and refine packag… #2

Workflow file for this run

name: PR Validation
on:
pull_request:
branches: [ master ]
push:
branches: [ master ]
jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.x'
- name: Restore dependencies
run: dotnet restore
- name: Format code
run: dotnet format --verify-no-changes
- name: Build solution
run: dotnet build --configuration Release --no-restore
- name: Run tests
run: dotnet test --configuration Release --no-build --verbosity normal
- name: Verify packaging
run: dotnet pack --configuration Release --no-build --output ./artifacts --verbosity normal