Skip to content

Commit 82076b9

Browse files
committed
ci: add workflow test-all
1 parent 223777c commit 82076b9

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/test-all.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Test all (on all branches)
2+
3+
on: [push]
4+
5+
jobs:
6+
test:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- name: Checkout repository
11+
uses: actions/checkout@v4
12+
13+
- name: dotnet build
14+
run: dotnet build
15+
16+
- name: dotnet test
17+
run: dotnet test

0 commit comments

Comments
 (0)