Fix/docker pull error #164
Workflow file for this run
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
name: Build and Test | ||
on: | ||
workflow_call: | ||
workflow_dispatch: | ||
pull_request: | ||
branches: | ||
- main | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
jobs: | ||
lint: | ||
name: Golang CI Lint | ||
uses: burnt-labs/xion/.github/workflows/golangci-lint.yml@fix/docker_pull_error | ||
secrets: inherit | ||
update-swagger: | ||
name: Update Swagger | ||
uses: burnt-labs/xion/.github/workflows/update-swagger.yml@fix/docker_pull_error | ||
secrets: inherit | ||
unit-tests: | ||
name: Go Unit Tests | ||
uses: burnt-labs/xion/.github/workflows/tests.yml@wf2 | ||
secrets: inherit | ||
build-docker: | ||
name: Build Docker Images | ||
uses: burnt-labs/xion/.github/workflows/docker-build.yml@wf2 | ||
secrets: inherit | ||
push-docker: | ||
needs: build-docker | ||
name: Heighliner Build | ||
uses: burnt-labs/xion/.github/workflows/docker-push.yml@wf2 | ||
Check failure on line 38 in .github/workflows/build-test.yml GitHub Actions / .github/workflows/build-test.ymlInvalid workflow file
|
||
secrets: inherit | ||
docker-scout: | ||
needs: build-docker | ||
name: Docker Scout | ||
uses: burnt-labs/xion/.github/workflows/docker-scout.yml@wf2 | ||
secrets: inherit | ||
interchain-tests: | ||
needs: build-docker | ||
name: Interchain tests | ||
uses: burnt-labs/xion/.github/workflows/integration-tests.yml@fix/docker_pull_error | ||
secrets: inherit |