Skip to content

Updating standard content files for repository #5

Updating standard content files for repository

Updating standard content files for repository #5

Workflow file for this run

name: Generic build
on:
push:
branches-ignore: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 7.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: "[ -f .ci-skip-tests ] && echo 'Skipping tests' || dotnet test --no-build --configuration Release --verbosity normal"