Skip to content

Commit 30828ab

Browse files
webwarrior-wsknocte
authored andcommitted
CI: add GitHubActions workflow
1 parent e003139 commit 30828ab

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

.github/workflows/CI.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
jobs:
8+
buildAndTest:
9+
10+
runs-on:
11+
- windows-latest
12+
13+
steps:
14+
- uses: actions/checkout@v4
15+
- name: Setup .NET
16+
uses: actions/setup-dotnet@v3
17+
with:
18+
dotnet-version: 8.0.415
19+
- name: Build & Run Tests
20+
run: |
21+
.\build.cmd

0 commit comments

Comments
 (0)