Skip to content

feat: fix multiple typos in dockerfile #172

feat: fix multiple typos in dockerfile

feat: fix multiple typos in dockerfile #172

Workflow file for this run

name: Golang Formatting
on: [pull_request]
jobs:
build:
name: Golang Formatter
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@main
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.22'
- name: Golang Formatting
run: |
if [ "$(gofmt -s -l . | wc -l)" -gt 0 ]; then
echo "Error: Golang files need to be formatted. Run 'gofmt -s -w .'."
exit 1
fi