Skip to content

Commit f0d5894

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

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/test.yaml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
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
16+
with:
17+
verb: call
18+
args: test
19+
- name: integration-test
20+
uses: dagger/dagger-for-github@v6
21+
with:
22+
verb: call
23+
args: integration-test

0 commit comments

Comments
 (0)