Skip to content

Commit 6e3f060

Browse files
authored
Merge pull request #35 from twpol/feature/ci
ci: Add GitHub CI workflow
2 parents b66b6f3 + 25f3e57 commit 6e3f060

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/ci.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: CI
2+
on: [push, pull_request]
3+
jobs:
4+
build:
5+
name: Build
6+
runs-on: windows-latest
7+
steps:
8+
- name: Checkout
9+
uses: actions/checkout@v3
10+
- name: Setup
11+
uses: actions/setup-dotnet@v2
12+
with:
13+
dotnet-version: 6.0.x
14+
- name: Restore
15+
run: dotnet restore
16+
- name: Build
17+
run: dotnet build --no-restore
18+
- name: Test
19+
run: dotnet test --no-build --verbosity normal

0 commit comments

Comments
 (0)