feat: Added CircleCI config

This commit is contained in:
Alan Rynne
2023-04-16 18:36:52 +02:00
parent 7f8ad15a22
commit 90dcc00b52
2 changed files with 36 additions and 28 deletions
-28
View File
@@ -1,28 +0,0 @@
name: .NET
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
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 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