1
0
mirror of https://github.com/oliverbooth/VPLink synced 2024-11-09 23:05:41 +00:00
VPLink/.github/workflows/dotnet.yml

27 lines
486 B
YAML
Raw Normal View History

2023-08-22 14:57:18 +01:00
name: .NET
on:
push:
pull_request:
jobs:
build:
name: "Build & Test"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore --configuration Release
- name: Test
run: dotnet test --no-build --verbosity normal