Upgrade deps and export config struct #17
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: checks | |
on: | |
pull_request: | |
push: | |
branches: | |
- 'master' | |
- 'main' | |
tags: | |
- 'v*' | |
jobs: | |
lint: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
name: Lint | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Import environment variables from file | |
run: cat ".github/env" >> $GITHUB_ENV | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: '${{ env.golang-version }}' | |
cache: true | |
- run: make --always-make lint && git diff --exit-code | |
generate: | |
runs-on: ubuntu-latest | |
name: Generate | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Import environment variables from file | |
run: cat ".github/env" >> $GITHUB_ENV | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: '${{ env.golang-version }}' | |
cache: true | |
- run: make --always-make generate && git diff --exit-code | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
name: Build the binary | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Import environment variables from file | |
run: cat ".github/env" >> $GITHUB_ENV | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: '${{ env.golang-version }}' | |
cache: true | |
- run: make up |