-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #31 from babylonlabs-io/dev
chore(*): switch to trunk based
- Loading branch information
Showing
57 changed files
with
1,442 additions
and
2,612 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: ci | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- '**' | ||
|
||
jobs: | ||
lint_test: | ||
uses: babylonlabs-io/.github/.github/workflows/reusable_go_lint_test.yml@v0.3.1 | ||
with: | ||
go-version: '1.23' | ||
go-lint-version: 'v1.60.2' | ||
run-unit-tests: true | ||
run-integration-tests: true | ||
run-lint: true | ||
install-dependencies-command: | | ||
sudo apt-get update | ||
sudo apt-get install -y libzmq3-dev | ||
docker_pipeline: | ||
uses: babylonlabs-io/.github/.github/workflows/reusable_docker_pipeline.yml@v0.3.1 | ||
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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: docker_publish | ||
|
||
on: | ||
push: | ||
branches: | ||
- 'main' | ||
tags: | ||
- '*' | ||
|
||
jobs: | ||
lint_test: | ||
uses: babylonlabs-io/.github/.github/workflows/reusable_go_lint_test.yml@v0.3.1 | ||
with: | ||
go-version: '1.23' | ||
go-lint-version: 'v1.60.2' | ||
run-unit-tests: true | ||
run-integration-tests: true | ||
run-lint: true | ||
install-dependencies-command: | | ||
sudo apt-get update | ||
sudo apt-get install -y 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 |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Contributing | ||
|
||
Vigilante repository follows the same contributing rules as | ||
[Babylon node](https://github.com/babylonlabs-io/babylon/blob/main/CONTRIBUTING.md) | ||
repository. |
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
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
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
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Release Process | ||
|
||
Vigilate repository follows the same release process rules as | ||
[Babylon node](https://github.com/babylonlabs-io/babylon/blob/main/RELEASE_PROCESS.md) | ||
repository. |
Oops, something went wrong.