This github action automatically formats your golang files in pull requests and pushes them. 🚀
Create a workflow yaml file (eg: .github/workflows/go-format.yml
see Creating a Workflow file):
name: Golang Formatter
on: [pull_request]
jobs:
build:
name: Golang Formatter
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
with:
fetch-depth: 0
- name: Golang Formatter
uses: sladyn98/auto-go-format@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}