From 7f4565459fa43d753ce78d8b7ab9b55ad7da8340 Mon Sep 17 00:00:00 2001 From: Runchao Han Date: Fri, 2 Aug 2024 16:34:41 +1000 Subject: [PATCH] minor --- .github/workflows/ci.yml | 4 ++-- .github/workflows/publish.yml | 5 ++--- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2af8cf1..ea84439 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index a029936..1e10a37 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -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