Skip to content

Merge pull request #22 from ClusterCockpit/hotfix #99

Merge pull request #22 from ClusterCockpit/hotfix

Merge pull request #22 from ClusterCockpit/hotfix #99

Workflow file for this run

name: Build & Test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: 1.22.x
- name: Checkout code
uses: actions/checkout@v3
- name: Build, Vet & Test
run: |
go build ./...
go vet ./...
go test ./...