Strip signature params #130
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Go Code Format Check | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
jobs: | |
format-check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: '1.23' | |
- name: Run gofmt to check code formatting | |
run: | | |
gofmt -l . | |
continue-on-error: true | |
- name: Fail if formatting issues found | |
run: | | |
FORMATTED=$(gofmt -l .) | |
if [ -n "$FORMATTED" ]; then | |
echo "The following files need to be formatted:" | |
echo "$FORMATTED" | |
exit 1 | |
fi |