Add tag to dbuild docker image #106
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: check_example | |
on: | |
push: | |
branches: | |
- 'main' | |
pull_request: | |
branches: | |
- 'main' | |
permissions: | |
contents: read | |
jobs: | |
example-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout repository | |
uses: actions/checkout@v3 | |
- name: setup go build environment | |
uses: actions/setup-go@v3 | |
with: | |
go-version-file: 'go.mod' | |
check-latest: true | |
- name: dependency cache | |
uses: actions/cache@v3 | |
with: | |
path: $(go env GOPATH)/pkg/mod | |
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
restore-keys: ${{ runner.os }}-go- | |
- name: linter | |
run: cd examples/service && make mod deps linter GOPATH=$(go env GOPATH) | |
example-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout repository | |
uses: actions/checkout@v3 | |
- name: install tools | |
run: pip install --upgrade check-jsonschema | |
- name: setup go build environment | |
uses: actions/setup-go@v3 | |
with: | |
go-version-file: 'go.mod' | |
check-latest: true | |
- name: dependency cache | |
uses: actions/cache@v3 | |
with: | |
path: $(go env GOPATH)/pkg/mod | |
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
restore-keys: ${{ runner.os }}-go- | |
- name: unit tests | |
run: cd examples/service && make mod deps gendoc generate confcheck test GOPATH=$(go env GOPATH) | |
example-integration-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout repository | |
uses: actions/checkout@v3 | |
- name: setup go build environment | |
uses: actions/setup-go@v3 | |
with: | |
go-version-file: 'go.mod' | |
check-latest: true | |
- name: dependency cache | |
uses: actions/cache@v3 | |
with: | |
path: $(go env GOPATH)/pkg/mod | |
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
restore-keys: ${{ runner.os }}-go- | |
- name: set RELEASE number | |
run: cd examples/service && echo ${GITHUB_RUN_NUMBER} > RELEASE | |
- name: integration tests | |
run: cd examples/service && make mod deps generate build docker dockertest GOPATH=$(go env GOPATH) |