diff --git a/.github/workflows/tidy.yml b/.github/workflows/tidy.yml new file mode 100644 index 0000000..5b63b76 --- /dev/null +++ b/.github/workflows/tidy.yml @@ -0,0 +1,13 @@ +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: . ./... \ No newline at end of file