-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6ee9a61
commit 91c3303
Showing
2 changed files
with
12 additions
and
22 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ on: | |
- '**' | ||
|
||
jobs: | ||
lint: | ||
lint_test: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Checkout repository | ||
|
@@ -17,19 +17,14 @@ jobs: | |
go-version: '1.21.4' | ||
- name: Run Lint | ||
run: make lint | ||
|
||
test: | ||
uses: babylonchain/.github/.github/workflows/[email protected] | ||
with: | ||
run-unit-tests: true | ||
run-integration-tests: true | ||
run-lint: false | ||
integration-tests-command: | | ||
make test-e2e | ||
- name: Run Unit Tests | ||
run: make test | ||
- name: Run Integration Tests | ||
run: make test-e2e | ||
|
||
docker_pipeline: | ||
uses: babylonchain/.github/.github/workflows/[email protected] | ||
needs: ["lint", "test"] | ||
needs: ["lint_test"] | ||
secrets: inherit | ||
with: | ||
publish: false | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ on: | |
- '*' | ||
|
||
jobs: | ||
lint: | ||
lint_test: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Checkout repository | ||
|
@@ -20,19 +20,14 @@ jobs: | |
go-version: '1.21.4' | ||
- name: Run Lint | ||
run: make lint | ||
- name: Run Unit Tests | ||
run: make test | ||
- name: Run Integration Tests | ||
run: make test-e2e | ||
|
||
test: | ||
uses: babylonchain/.github/.github/workflows/[email protected] | ||
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/[email protected] | ||
needs: ["lint", "test"] | ||
needs: ["lint_test"] | ||
secrets: inherit | ||
with: | ||
publish: true | ||
|