Skip to content

Commit 3e24204

Browse files
authored
Create actions pipeline (#2)
1 parent 569c368 commit 3e24204

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/main.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: Run Unit and Integration tests
2+
on: [push]
3+
jobs:
4+
Build-And-Test:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- uses: actions/checkout@v4
8+
- name: Setup .NET Core SDK
9+
uses: actions/setup-dotnet@v4
10+
- name: Test with the dotnet CLI
11+
run: dotnet test

0 commit comments

Comments
 (0)