Merge pull request #367 from jdamata/dependabot/go_modules/github.com… #62
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: tfplugindocs check | |
| on: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| tfplugindocs_check: | |
| name: tfplugindocs check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version-file: tools/go.mod | |
| cache-dependency-path: tools/go.sum | |
| - run: | | |
| make tools | |
| make docs | |
| git add -N docs/ | |
| git diff --exit-code |