Skip to content

feat: add dependabot for actions #235

feat: add dependabot for actions

feat: add dependabot for actions #235

Workflow file for this run

name: build
on:
pull_request:
push:
branches:
- main
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
- name: Checkout code
uses: actions/checkout@v4
- name: fmt
run: make fmt
- name: Build
run: make build