Skip to content

Move templates to use const naming (#21) #9

Move templates to use const naming (#21)

Move templates to use const naming (#21) #9

Workflow file for this run

name: Format
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
go_fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20.x'
- name: Install dependencies
run: |
go get ./...
- name: Format code
uses: Jerome1337/[email protected]
with:
gofmt-path: './'
gofmt-flags: '-l -d'