chore(deps): bump the go_modules group across 1 directory with 1 update #23
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: Base CI Jobs | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
lint-fmt: | |
name: Lint and Format | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: '^1.21.3' # The Go version to download (if necessary) and use. | |
- name: Run Lint Go | |
run: make lint-go | |
- name: Run Format | |
run: make fmt | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: '^1.21.3' # The Go version to download (if necessary) and use. | |
- name: Run OAPI-Generate | |
run: make gen | |
- name: Make Build Go | |
run: make build-go | |
- name: Make Build Docker Images | |
run: make build-image | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: '^1.21.3' # The Go version to download (if necessary) and use. | |
- name: Unit Tests | |
run: make unit-test |