Skip to content

Commit 44f8091

Browse files
committed
chore(ci): add github action ci.yaml
1 parent 9902012 commit 44f8091

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/ci.yaml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Quickstart for GitHub Actions
2+
# https://docs.github.com/en/actions/quickstart
3+
4+
name: CI
5+
on: [ push, pull_request, workflow_dispatch ]
6+
jobs:
7+
test:
8+
runs-on: ubuntu-latest
9+
timeout-minutes: 5
10+
strategy:
11+
fail-fast: false
12+
max-parallel: 32
13+
14+
steps:
15+
- uses: actions/checkout@v3
16+
with:
17+
submodules: recursive
18+
- run: test-cases/integration-test.sh

0 commit comments

Comments
 (0)