Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastianElvis committed Aug 2, 2024
1 parent 7f73b76 commit 7f45654
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,17 @@ on:
- '**'

jobs:
lint_test:
test:
uses: babylonchain/.github/.github/workflows/reusable_go_lint_test.yml@v0.1.0
with:
run-unit-tests: true
run-integration-tests: true
run-lint: false
integration-tests-command: |
make test-e2e
docker_pipeline:
uses: babylonchain/.github/.github/workflows/reusable_docker_pipeline.yml@v0.1.0
needs: ["test"]
secrets: inherit
with:
publish: false
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,17 @@ on:
- '*'

jobs:
lint_test:
test:
uses: babylonchain/.github/.github/workflows/reusable_go_lint_test.yml@v0.1.0
with:
run-unit-tests: true
run-integration-tests: true
run-lint: false
integration-tests-command: |
make test-e2e
docker_pipeline:
uses: babylonchain/.github/.github/workflows/reusable_docker_pipeline.yml@v0.1.0
needs: ["lint_test"]
needs: ["test"]
secrets: inherit
with:
publish: true
Expand Down

0 comments on commit 7f45654

Please sign in to comment.