Skip to content

Update testsnyk.yml #87

Update testsnyk.yml

Update testsnyk.yml #87

Workflow file for this run

name: .NET Core
on:
push:
branches: [ master, develop ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0.100
- name: Restore with dotnet
run: dotnet restore
- name: Build with dotnet
run: dotnet build --no-restore --configuration Release
- name: Test with dotnet
run: dotnet test --no-build --configuration Release /p:CollectCoverage=true