Skip to content

Bump metal-api to version v0.23.1 (#129) #126

Bump metal-api to version v0.23.1 (#129)

Bump metal-api to version v0.23.1 (#129) #126

Workflow file for this run

name: build
on:
push
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.20
uses: actions/setup-go@v4
with:
go-version: "1.20"
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Lint
uses: golangci/golangci-lint-action@v3
with:
args: -p bugs -p unused
- name: Build
run: make test
- name: Publish Codecoverage report
run: bash <(curl -s https://codecov.io/bash)