ci: run orm tests (#15885)

This commit is contained in:
Julien Robert 2023-04-20 17:03:31 +02:00 committed by GitHub
parent 99bbe5121a
commit b6812c1130
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 44 additions and 0 deletions

View File

@ -496,6 +496,36 @@ jobs:
with:
projectBaseDir: collections/
test-orm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: 1.20.3
cache: true
cache-dependency-path: orm/go.sum
- uses: technote-space/get-diff-action@v6.1.2
id: git_diff
with:
PATTERNS: |
orm/**/*.go
orm/go.mod
orm/go.sum
- name: tests
if: env.GIT_DIFF
run: |
cd orm
go test -mod=readonly -timeout 30m -coverprofile=coverage.out -covermode=atomic -tags='norace ledger test_ledger_mock rocksdb_build' ./...
- name: sonarcloud
if: ${{ env.GIT_DIFF && !github.event.pull_request.draft && env.SONAR_TOKEN != null }}
uses: SonarSource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
with:
projectBaseDir: orm/
test-cosmovisor:
runs-on: ubuntu-latest
steps:

View File

@ -0,0 +1,14 @@
sonar.projectKey=cosmos-sdk-orm
sonar.organization=cosmos
sonar.projectName=Cosmos SDK - ORM
sonar.project.monorepo.enabled=true
sonar.sources=.
sonar.exclusions=**/*_test.go
sonar.tests=.
sonar.test.inclusions=**/*_test.go
sonar.go.coverage.reportPaths=coverage.out
sonar.sourceEncoding=UTF-8
sonar.scm.provider=git