Skip to content
git-pull-request

GitHub Action

Go Formatter

v0.0.1 Latest version

Go Formatter

git-pull-request

Go Formatter

Automatically formats golang files in pull requests

Installation

Copy and paste the following snippet into your .yml file.

              

- name: Go Formatter

uses: sladyn98/[email protected]

Learn more about this action in sladyn98/auto-go-format

Choose a version

auto-go-format

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

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