-
-
Notifications
You must be signed in to change notification settings - Fork 95
28 lines (24 loc) · 595 Bytes
/
dotnet.yml
File metadata and controls
28 lines (24 loc) · 595 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
name: .NET
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore Triangle.sln
working-directory: ./src
- name: Build
run: dotnet build Triangle.sln --no-restore
working-directory: ./src
- name: Test
run: dotnet test Triangle.sln --no-build --verbosity normal
working-directory: ./src