26 lines
526 B
YAML
Raw Normal View History

2022-02-21 18:28:10 +11:00
name: .NET
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: windows-latest
2022-02-21 18:28:10 +11:00
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
- name: Restore dependencies
run: dotnet restore
2022-02-26 20:32:15 +11:00
- name: Build VVCEasy (.NET Console Version)
2022-02-21 18:28:10 +11:00
run: dotnet build --no-restore
2022-02-26 20:32:15 +11:00
- name: Test VVCEasy (.NET Console Version)
2022-02-21 18:28:10 +11:00
run: dotnet test --no-build --verbosity normal