✨ override specification of the name of the docker container hosting the kubeflex cluster #200
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: CI | |
on: | |
pull_request: | |
branches: | |
- main | |
- "release-*" | |
jobs: | |
ci-checks: | |
runs-on: ubuntu-latest | |
name: CI Checks | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: '1.19' | |
- name: Lint | |
run: go fmt ./... | |
- name: Static analysis | |
run: go vet ./... | |
- name: Build | |
run: go build -v ./... | |
- name: Test | |
run: go test -v ./... |