-
Notifications
You must be signed in to change notification settings - Fork 30
45 lines (37 loc) · 1.01 KB
/
build-test.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
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.yaml@main
secrets: inherit
update-swagger:
name: Update Swagger
uses: burnt-labs/xion/.github/workflows/update-swagger.yaml@main
secrets: inherit
unit-tests:
name: Go Unit Tests
uses: burnt-labs/xion/.github/workflows/tests.yaml@main
secrets: inherit
build-docker:
name: Build Docker Images
uses: burnt-labs/xion/.github/workflows/docker-build.yaml@main
secrets: inherit
docker-scout:
needs: build-docker
name: Docker Scout
uses: burnt-labs/xion/.github/workflows/docker-scout.yaml@main
secrets: inherit
interchain-tests:
needs: build-docker
name: Interchain tests
uses: burnt-labs/xion/.github/workflows/integration-tests.yaml@main
secrets: inherit