Skip to content

Commit

Permalink
switch to gh actions (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
KonradStaniec authored Aug 7, 2024
1 parent b11a36d commit d931b2c
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 105 deletions.
105 changes: 0 additions & 105 deletions .circleci/config.yml

This file was deleted.

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

on:
pull_request:
branches:
- '**'

jobs:
lint_test:
uses: babylonlabs-io/.github/.github/workflows/reusable_go_lint_test.yml@v0.3.1
with:
run-unit-tests: true
run-integration-tests: true
run-lint: true
install-dependencies-command: sudo apt-get install libzmq3-dev

docker_pipeline:
uses: babylonlabs-io/.github/.github/workflows/reusable_docker_pipeline.yml@v0.3.1
secrets: inherit
with:
publish: false
25 changes: 25 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: docker_publish

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

jobs:
lint_test:
uses: babylonlabs-io/.github/.github/workflows/reusable_go_lint_test.yml@v0.3.1
with:
run-unit-tests: true
run-integration-tests: true
run-lint: true
install-dependencies-command: sudo apt-get install libzmq3-dev

docker_pipeline:
needs: ["lint_test"]
uses: babylonlabs-io/.github/.github/workflows/reusable_docker_pipeline.yml@v0.3.1
secrets: inherit
with:
publish: true

0 comments on commit d931b2c

Please sign in to comment.