Skip to content

fix

fix #5

Workflow file for this run

name: ci
on:
push:
branches:
- '**'
jobs:
lint:
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.21.4'
- name: Run Lint
run: make lint
test:
uses: babylonchain/.github/.github/workflows/[email protected]
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/[email protected]
needs: ["lint", "test"]
secrets: inherit
with:
publish: false
dockerfile: ./Dockerfile
repoName: babylon-sdk