Add multitarget support for DotNet 8, 9, and 10 (#62) #143
This file contains hidden or 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, workflow_dispatch] | |
| jobs: | |
| build-windows: | |
| name: Build Windows | |
| permissions: | |
| contents: read # To read repository contents | |
| pull-requests: write # To write pull requests analysis results and artifacts | |
| uses: ./.github/workflows/build.yaml | |
| with: | |
| os: windows-latest | |
| version: 0.0.0-run.${{ github.run_number }} | |
| secrets: | |
| SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
| build-linux: | |
| name: Build Linux | |
| permissions: | |
| contents: read # To read repository contents | |
| pull-requests: write # To write pull requests analysis results and artifacts | |
| uses: ./.github/workflows/build.yaml | |
| with: | |
| os: ubuntu-latest | |
| version: 0.0.0-run.${{ github.run_number }} | |
| secrets: | |
| SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} |