Skip to content

Commit 0b12f6a

Browse files
add ci workflow
1 parent 950fd01 commit 0b12f6a

File tree

2 files changed

+15
-144
lines changed

2 files changed

+15
-144
lines changed

.github/workflows/build.yml

Lines changed: 0 additions & 144 deletions
This file was deleted.

.github/workflows/ci.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
on:
2+
push:
3+
branches:
4+
- main
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
timeout-minutes: 15
9+
steps:
10+
- name: Checkout
11+
uses: actions/checkout@v2
12+
- name: Build
13+
run: dotnet build --configuration Release
14+
- name: Test
15+
run: dotnet test --configuration Release --no-build

0 commit comments

Comments
 (0)