Add GitHub actions CI #8
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: .NET | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
dotnet: [ '6.0', '8.0' ] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
id: stepid | |
with: | |
dotnet-version: ${{ matrix.dotnet }} | |
# By default, tests will be executed under the latest installed version! | |
- name: Create temporary global.json | |
run: echo '{"sdk":{"version":"${{steps.stepid.outputs.dotnet-version}}"}}' > ./global.json | |
- name: Restore packages | |
run: dotnet restore -p:TargetFrameworks="net${{ matrix.dotnet }}" -p:LangVersion="latest" | |
- name: Build solution | |
run: dotnet build --no-restore --configuration Release -p:TargetFrameworks="net${{ matrix.dotnet }}" -p:LangVersion="latest" --verbosity detailed | |
- name: Run tests | |
run: dotnet test --configuration Release --no-build --verbosity detailed -p:TargetFrameworks="net${{ matrix.dotnet }}" -p:LangVersion="latest" |