README update (MIT license) #18
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: .NET | |
| on: | |
| push: | |
| branches: [ "master" ] | |
| pull_request: | |
| branches: [ "master" ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v2 | |
| with: | |
| dotnet-version: 8.0.x | |
| - name: Restore dependencies | |
| run: dotnet restore src | |
| - name: Build Lib | |
| run: dotnet build src/NReco.PivotData --no-restore -property:TargetFrameworks=netstandard2.1 | |
| - name: Build Tests | |
| run: dotnet build src/NReco.PivotData.Tests --no-restore | |
| - name: Test | |
| run: dotnet test src/NReco.PivotData.Tests --no-build --verbosity detailed |