Documentation release of version 0.0.1 #11
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 master | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, windows-latest, macOS-latest] | |
| dotnet: [3.1.100] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - name: Setup .NET Core | |
| uses: actions/setup-dotnet@v1 | |
| with: | |
| dotnet-version: ${{ matrix.dotnet }} | |
| - name: Build | |
| if: runner.os != 'Windows' | |
| run: | | |
| chmod +x ./build.sh | |
| ./build.sh | |
| env: | |
| # Work around https://github.com/actions/setup-dotnet/issues/29 | |
| DOTNET_ROOT: ${{ runner.tool_cache }}/dncs/${{ matrix.dotnet }}/x64 | |
| CI: true | |
| - name: Build | |
| if: runner.os == 'Windows' | |
| run: ./build.cmd | |
| env: | |
| # Work around https://github.com/actions/setup-dotnet/issues/29 | |
| DOTNET_ROOT: ${{ runner.tool_cache }}/dncs/${{ matrix.dotnet }}/x64 | |
| CI: true |