Skip to content

Update client to 0.5.0 #89

Update client to 0.5.0

Update client to 0.5.0 #89

Workflow file for this run

name: Build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
strategy:
matrix:
go: [ '1.19', '1.20', '1.21', '1.22' ]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go ${{ matrix.go }}
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
- name: Checkout code
uses: actions/checkout@v2
- name: Build project
run: make build
- name: Execute CLI help
run: ./cobbler --help