VVCEasy/.github/workflows/dotnet.yml

26 lines
526 B
YAML
Raw Normal View History

2022-02-21 08:28:10 +01:00
name: .NET
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: windows-latest
2022-02-21 08:28:10 +01: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 10:32:15 +01:00
- name: Build VVCEasy (.NET Console Version)
2022-02-21 08:28:10 +01:00
run: dotnet build --no-restore
2022-02-26 10:32:15 +01:00
- name: Test VVCEasy (.NET Console Version)
2022-02-21 08:28:10 +01:00
run: dotnet test --no-build --verbosity normal