Skip to content

Commit

Permalink
Merge pull request #53 from babylonchain/hiep/add-github-actions-main
Browse files Browse the repository at this point in the history
Hiep/add GitHub actions main - merge back to dev
  • Loading branch information
KonradStaniec authored Jul 30, 2024
2 parents e51ac4a + 84f4912 commit 2d9eb7d
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 103 deletions.
103 changes: 0 additions & 103 deletions .circleci/config.yml

This file was deleted.

20 changes: 20 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: ci

on:
pull_request:
branches:
- '**'

jobs:
lint_test:
uses: babylonchain/.github/.github/workflows/[email protected]
with:
run-unit-tests: true
run-integration-tests: true
run-lint: true

docker_pipeline:
uses: babylonchain/.github/.github/workflows/[email protected]
secrets: inherit
with:
publish: false
24 changes: 24 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: docker_publish

on:
push:
branches:
- 'main'
- 'dev'
tags:
- '*'

jobs:
lint_test:
uses: babylonchain/.github/.github/workflows/[email protected]
with:
run-unit-tests: true
run-integration-tests: true
run-lint: true

docker_pipeline:
needs: ["lint_test"]
uses: babylonchain/.github/.github/workflows/[email protected]
secrets: inherit
with:
publish: true

0 comments on commit 2d9eb7d

Please sign in to comment.