Skip to content

Commit

Permalink
feat: circleci tests for STM enhancement (#112)
Browse files Browse the repository at this point in the history
  • Loading branch information
zl03jsj authored Nov 17, 2022
1 parent 996b2a9 commit 4597176
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@

version: 2.1

orbs:
go: venus/go-pkg-test@1.0.1
jobs:
test_all:
executor:
name: go/default
tag: "cimg/go:1.18.1"
steps:
- go/setup_env:
install_ffi: true
- go/test:
display-name: unit_test_common
suite: "unit_test_common"
target: "./common/..."
- go/test:
display-name: unit_test_filemgr
suite: "filemgr"
target: "./filemgr/..."
- go/test:
display-name: integrate_test
suite: " integrate_test"
target: "./integration_test/..."
- go/test:
display-name: unit_test_storage
suite: "unit_test_storage"
target: "./storage/..."
workflows:
ci:
jobs:
- test_all

0 comments on commit 4597176

Please sign in to comment.