AST Rework #76
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
push: | |
branches: [ main] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [ ubuntu-latest, windows-latest ] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-dotnet@v4 | |
name: Install Current .NET SDK | |
- name: Restore dependencies | |
run: dotnet restore | |
- name: Build | |
run: dotnet build --configuration Release --no-restore /p:TreatWarningsAsErrors=true | |
- name: Run Tests | |
run: dotnet test --configuration Release --no-build | |
nupkg: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-dotnet@v4 | |
name: Install Current .NET SDK | |
- name: Generate NuGet Packages | |
run: dotnet pack --configuration Release --output nupkg /p:GenerateInternalsVisibleToAttributes=false | |
- uses: actions/upload-artifact@v4 | |
if: success() && github.ref == 'refs/heads/main' | |
with: | |
name: nupkg | |
path: nupkg/* | |
retention-days: 1 |