Merge pull request #161 from lacmus-foundation/dev #279
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 Core | |
on: [push] | |
jobs: | |
build: | |
name: Test on dotnet ${{ matrix.dotnet_version }} and ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
dotnet_version: ['8.0.x'] | |
os: [ubuntu-latest, windows-latest, macOS-latest] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup .NET Core ${{ matrix.dotnet_version}} | |
uses: actions/setup-dotnet@v1 | |
with: | |
node-version: ${{ matrix.dotnet_version}} | |
- name: Build with dotnet | |
run: cd src && dotnet build --configuration Release |