Skip to content

nebraska/main: fix error formatting #1045

nebraska/main: fix error formatting

nebraska/main: fix error formatting #1045

Workflow file for this run

name: Build Backend
on:
pull_request:
paths:
- 'backend/cmd/**'
- 'backend/pkg/**'
- 'backend/tools/**'
- 'backend/test/**'
- 'backend/go.mod'
- 'backend/go.sum'
- 'updaters/**'
- '.github/**'
- Makefile
jobs:
build:
name: Lint & Build
runs-on: ubuntu-22.04
steps:
- name: Set up Go 1.21
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
with:
go-version: 1.21.x
id: go
- name: Check out code
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Build, Lint & Check
run: |
make all ci
working-directory: backend