Skip to content

Create main.yml

Create main.yml #1

Workflow file for this run

name: .NET Core
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 8.0.100
- name: Setup NuGet.exe for use with actions
uses: NuGet/[email protected]
- name: Restore
run: nuget restore
- name: Build with dotnet
run: dotnet build --no-restore
- name: Run Test Suite
run: dotnet test --no-build