Merge pull request #11 from KirillOsenkov/dev/kirillo/tool #11
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: Ubuntu | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
env: | |
ACTIONS_ALLOW_UNSECURE_COMMANDS: true | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 # avoid shallow clone so that nbgv can do its work. | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 3.1.301 | |
- name: Build | |
run: dotnet build --framework netcoreapp3.1 | |
- name: Test | |
run: dotnet test --no-build --verbosity normal --framework netcoreapp3.1 |