Skip to content

fix: tests

fix: tests #1113

Workflow file for this run

name: Format
on:
pull_request:
push:
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: go.mod
cache-dependency-path: go.mod
- run: make format
- name: Indicate formatting issues
run: git diff HEAD --exit-code --color