split image workflow from build #53
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
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: setup Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: '1.22' | |
- uses: actions/checkout@v4 | |
- run: make style | |
- run: make vet | |
- run: make test | |
- run: make build | |
- run: make integ |