Skip to content

fix: add status option for no-bmc appliance #50

fix: add status option for no-bmc appliance

fix: add status option for no-bmc appliance #50

Workflow file for this run

# This workflow runs format and build checks on the projects golang code
name: Golang CI
on: [push]
jobs:
go-format-and-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Golang
uses: actions/setup-go@v4
with:
go-version: "1.22.1"
- name: Generate support files
run: make generate
- name: Format Golang
run: if [ "$(gofmt -l . | wc -l)" -gt 0 ]; then exit 1; fi
- name: Build Golang
run: make build-go