We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 373a8e2 commit e385e81Copy full SHA for e385e81
.github/workflows/ci.yml
@@ -0,0 +1,21 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches: [ "main" ]
6
+ pull_request:
7
8
9
+jobs:
10
+ test:
11
+ runs-on: ubuntu-latest
12
+ container: mcr.microsoft.com/dotnet/sdk:7.0
13
14
+ steps:
15
+ - name: Checkout
16
+ uses: actions/checkout@v3
17
+ - name: Build
18
+ run: ./build.sh
19
+ - name: Test
20
+ run: ./test.sh
21
build.sh
@@ -0,0 +1,3 @@
+#!/usr/bin/env bash
+dotnet restore
+dotnet build -c Release
test.sh
@@ -0,0 +1,2 @@
+dotnet test -c Release
0 commit comments