Skip to content

Add dashboard

Add dashboard #10

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'