catbase/.github/workflows/tidy.yml

13 lines
335 B
YAML
Raw Normal View History

2022-10-06 12:57:11 +00:00
name: Go Tidy
on: [push]
jobs:
build:
name: Go mod tidy check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: katexochen/go-tidy-check@v1
with:
# (Optional) The path to the root of each modules, space separated. Default is the current directory.
modules: . ./...