Skip to content

Commit 9a30249

Browse files
committed
feat: add CI to test the integration
Signed-off-by: Thanabodee Charoenpiriyakij <wingyminus@gmail.com>
1 parent be40962 commit 9a30249

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/test.yaml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: test
2+
3+
on:
4+
pull_request:
5+
branches: [main]
6+
7+
jobs:
8+
test:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v4
12+
with:
13+
fetch-depth: 1
14+
- name: unit-test
15+
uses: dagger/dagger-for-github@v6.15.1
16+
with:
17+
version: 0.15.1
18+
verb: call
19+
args: test
20+
- name: integration-test
21+
uses: dagger/dagger-for-github@v6.15.1
22+
with:
23+
version: 0.15.1
24+
verb: call
25+
args: integration-test

0 commit comments

Comments
 (0)