From 9636c8418b9d79d6dd9adb51c0fcd8db85097847 Mon Sep 17 00:00:00 2001 From: Hiep Mai Date: Fri, 12 Jul 2024 15:33:25 +0700 Subject: [PATCH] feat: Add github actions --- .github/workflows/ci.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 000000000..4cc84c338 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,23 @@ +name: ci + +on: + push: + branches: + - '**' + +jobs: + lint_test: + uses: hiepmai-babylonchain/.github/.github/workflows/reusable_go_lint_test.yml@hiep/add-reusable-workflows + with: + run-unit-tests: true + run-integration-tests: true + run-lint: true + go-version: 1.21.4 + + + docker_pipeline: + uses: hiepmai-babylonchain/.github/.github/workflows/reusable_docker_pipeline.yml@hiep/add-reusable-workflows + secrets: inherit + with: + publish: false + dockerfile: ./contrib/images/babylond/Dockerfile \ No newline at end of file