Skip to content

Commit 16029ad

Browse files
committed
add pipeline action
1 parent fd9572e commit 16029ad

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/test.yaml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: SAFE meta automated tests
2+
3+
on: push
4+
5+
jobs:
6+
test:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- name: Checkout
11+
uses: actions/checkout@v4
12+
13+
- name: Tool Restore
14+
run: dotnet tool restore
15+
16+
- name: Test
17+
run: dotnet run --project Build.fsproj -- Test

0 commit comments

Comments
 (0)