VPLink/.github/workflows/dotnet.yml

29 lines
497 B
YAML
Raw Normal View History

2023-08-22 13:57:18 +00:00
name: .NET
on:
2023-08-28 00:42:23 +00:00
workflow_dispatch:
2023-08-22 13:57:18 +00:00
push:
pull_request:
jobs:
build:
name: "Build & Test"
runs-on: ubuntu-latest
steps:
2023-08-26 17:03:56 +00:00
- uses: actions/checkout@v3
- 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
2023-08-28 00:18:09 +00:00
run: dotnet test --verbosity normal