auto-go-format icon indicating copy to clipboard operation
auto-go-format copied to clipboard

This github action automatically formats your golang files and pushes them to your repo :rocket:

auto-go-format

This github action automatically formats your golang files in pull requests and pushes them. :rocket:

Installation

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 }}