Skip to content

Add GitHub workflows #1

Add GitHub workflows

Add GitHub workflows #1

Workflow file for this run

name: Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: self-hosted
steps:
- name: Checkout
uses: actions/[email protected]
- name: Restore dotnet tools
run: dotnet tool restore
- name: Paket restore
run: dotnet paket restore
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore --configuration Release
- name: Test
run: dotnet test --no-build --verbosity normal --configuration Release