Skip to content

Commit

Permalink
Merge pull request #117 from filecoin-project/feat/circleci-tests-for…
Browse files Browse the repository at this point in the history
…-stm

feat: circleci tests for STM enhancement
  • Loading branch information
hunjixin authored Nov 17, 2022
2 parents bd140cb + e629e8f commit 59c01fc
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
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_auth
suite: "auth"
target: "./auth/..."
- go/test:
display-name: integrate_test
suite: "integrate_test"
target: "./integrate_test/..."
- go/test:
display-name: unit_test_jwtclient
suite: "jwtclient"
target: "./jwtclient/..."
- go/test:
display-name: unit_test_storage
suite: "storage"
target: "./storage/..."
workflows:
ci:
jobs:
- test_all

0 comments on commit 59c01fc

Please sign in to comment.