chore / update contact data documentation #34
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 validator | |
on: | |
pull_request: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
dotnet-version: ['3.1.x'] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup .NET Core SDK ${{ matrix.dotnet-version }} | |
uses: actions/setup-dotnet@v1.7.2 | |
with: | |
dotnet-version: ${{ matrix.dotnet-version }} | |
- name: Install dependencies | |
run: dotnet restore scripts/dotnet/SwissRETS.Tests.csproj | |
- name: Build | |
run: dotnet build scripts/dotnet/SwissRETS.Tests.csproj --configuration Release --no-restore | |
- name: Test | |
run: dotnet test scripts/dotnet/SwissRETS.Tests.csproj --no-restore --verbosity normal |