Skip to content

Commit 902409c

Browse files
committed
ci: Add workflow
1 parent 45bc5a7 commit 902409c

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

.github/workflows/default.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: "default"
2+
3+
on:
4+
push:
5+
branches:
6+
- '*/*'
7+
- '*'
8+
tags:
9+
- '!refs/tags/*'
10+
11+
jobs:
12+
build:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Checkout
16+
uses: actions/checkout@v1
17+
- name: Setup .NET Core
18+
uses: actions/setup-dotnet@v1
19+
- name: Build
20+
run: dotnet build -c Release
21+
- name: Tests
22+
run: dotnet test -c Release --no-build

0 commit comments

Comments
 (0)