Skip to content

chore: bump version to v2.4.0 #35

chore: bump version to v2.4.0

chore: bump version to v2.4.0 #35

Workflow file for this run

name: check-fmt
on:
push:
branches:
- '**'
tags:
- 'v*'
workflow_dispatch:
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.23'
- name: Check formatting
run: |
if [ -n "$(gofmt -l .)" ]; then
echo "The following files are not formatted properly:"
gofmt -d .
exit 1
fi
echo "All files are formatted correctly."