feat: Updated to NET9 and added trimming/NativeAOT support. #134
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, test and publish | |
on: | |
push: | |
branches: | |
- master | |
tags: | |
- v** | |
jobs: | |
build-test-publish: | |
name: Build, test and publish | |
strategy: | |
matrix: | |
include: | |
- os: windows-latest | |
publish: true | |
- os: macos-latest | |
publish: false | |
- os: ubuntu-latest | |
publish: false | |
uses: HavenDV/workflows/.github/workflows/dotnet_build-test-publish.yml@main | |
with: | |
os: ${{ matrix.os }} | |
publish: ${{ matrix.publish }} | |
secrets: | |
nuget-key: ${{ secrets.NUGET_KEY }} |