feat: devnet for regen-ledger #2269
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
# **What it does**: Runs unit and integration tests when go files | |
# have been modified and provides code coverage reports. | |
# | |
# **Why we have it**: Ensures the application is production ready. | |
# | |
# **What does it impact**: Application stability. | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
- release/v* | |
permissions: | |
contents: read | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
unit: | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: read # for technote-space/get-diff-action to get git reference | |
strategy: | |
matrix: | |
module: ["app", "types", "x/data", "x/ecocredit", "x/intertx"] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: technote-space/get-diff-action@v6 | |
with: | |
PATTERNS: | | |
**/**.go | |
**/go.mod | |
**/go.sum | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: 'go.mod' | |
if: env.GIT_DIFF || github.ref == 'refs/heads/main' | |
- run: make test-app | |
if: | | |
(env.GIT_DIFF && matrix.module == 'app') || | |
github.ref == 'refs/heads/main' | |
- run: make test-types | |
if: | | |
(env.GIT_DIFF && matrix.module == 'types') || | |
github.ref == 'refs/heads/main' | |
- run: make test-x-data | |
if: | | |
(env.GIT_DIFF && matrix.module == 'x/data') || | |
github.ref == 'refs/heads/main' | |
- run: make test-x-ecocredit | |
if: | | |
(env.GIT_DIFF && matrix.module == 'x/ecocredit') || | |
github.ref == 'refs/heads/main' | |
- run: make test-x-intertx | |
if: | | |
(env.GIT_DIFF && matrix.module == 'x/intertx') || | |
github.ref == 'refs/heads/main' | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: coverage-app | |
path: coverage-app.out | |
if: | | |
(env.GIT_DIFF && matrix.module == 'app') || | |
github.ref == 'refs/heads/main' | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: coverage-types | |
path: coverage-types.out | |
if: | | |
(env.GIT_DIFF && matrix.module == 'types') || | |
github.ref == 'refs/heads/main' | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: coverage-x-data | |
path: coverage-x-data.out | |
if: | | |
(env.GIT_DIFF && matrix.module == 'x/data') || | |
github.ref == 'refs/heads/main' | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: coverage-x-ecocredit | |
path: coverage-x-ecocredit.out | |
if: | | |
(env.GIT_DIFF && matrix.module == 'x/ecocredit') || | |
github.ref == 'refs/heads/main' | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: coverage-x-intertx | |
path: coverage-x-intertx.out | |
if: | | |
(env.GIT_DIFF && matrix.module == 'x/intertx') || | |
github.ref == 'refs/heads/main' | |
integration: | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: read # for technote-space/get-diff-action to get git reference | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: technote-space/get-diff-action@v6 | |
with: | |
PATTERNS: | | |
**/**.go | |
**/go.mod | |
**/go.sum | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: 'go.mod' | |
if: env.GIT_DIFF || github.ref == 'refs/heads/main' | |
- run: make test-integration | |
if: env.GIT_DIFF || github.ref == 'refs/heads/main' | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: coverage-integration | |
path: coverage-integration.out | |
if: env.GIT_DIFF || github.ref == 'refs/heads/main' | |
coverage: | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: read # for technote-space/get-diff-action to get git reference | |
needs: [unit, integration] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: technote-space/get-diff-action@v6 | |
with: | |
PATTERNS: | | |
**/**.go | |
**/go.mod | |
**/go.sum | |
- uses: actions/download-artifact@v3 | |
with: | |
name: coverage-app | |
if: env.GIT_DIFF || github.ref == 'refs/heads/main' | |
- uses: actions/download-artifact@v3 | |
with: | |
name: coverage-types | |
if: env.GIT_DIFF || github.ref == 'refs/heads/main' | |
- uses: actions/download-artifact@v3 | |
with: | |
name: coverage-x-data | |
if: env.GIT_DIFF || github.ref == 'refs/heads/main' | |
- uses: actions/download-artifact@v3 | |
with: | |
name: coverage-x-ecocredit | |
if: env.GIT_DIFF || github.ref == 'refs/heads/main' | |
- uses: actions/download-artifact@v3 | |
with: | |
name: coverage-x-intertx | |
if: env.GIT_DIFF || github.ref == 'refs/heads/main' | |
- uses: actions/download-artifact@v3 | |
with: | |
name: coverage-integration | |
if: env.GIT_DIFF || github.ref == 'refs/heads/main' | |
- run: make test-coverage | |
if: env.GIT_DIFF || github.ref == 'refs/heads/main' | |
- uses: codecov/codecov-action@v3 | |
with: | |
file: coverage.txt | |
if: env.GIT_DIFF || github.ref == 'refs/heads/main' |