Skip to content

fix: add missing checkout before building pkg #230

fix: add missing checkout before building pkg

fix: add missing checkout before building pkg #230

Workflow file for this run

name: build
on:
pull_request:
push:
branches:
- main
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [~1.22, ~1.22.3, ^1]
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v3
- name: fmt
run: make fmt
- name: Build
run: make build