feat(auth): support accounts from auth (#21688)

This commit is contained in:
testinginprod
2024-09-17 18:12:45 +00:00
committed by GitHub
parent ffc16099aa
commit 81ec7ea9e7
35 changed files with 3130 additions and 249 deletions
+23
View File
@@ -937,6 +937,29 @@ jobs:
with:
projectBaseDir: x/accounts/
test-x-accounts-base:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.23"
check-latest: true
cache: true
cache-dependency-path: x/accounts/defaults/base/go.sum
- uses: technote-space/get-diff-action@v6.1.2
id: git_diff
with:
PATTERNS: |
x/accounts/defaults/base/**/*.go
x/accounts/defaults/base/go.mod
x/accounts/defaults/base/go.sum
- name: tests
if: env.GIT_DIFF
run: |
cd x/accounts/defaults/base
go test -mod=readonly -timeout 30m -coverprofile=coverage.out -covermode=atomic -tags='norace ledger test_ledger_mock' ./...
test-x-accounts-lockup:
runs-on: ubuntu-latest
steps: