-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #156 from ddelnano/ddelnano/add-tfplugindocs-linting
- Loading branch information
Showing
3 changed files
with
37 additions
and
4 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
--- | ||
name: 'tfplugindocs' | ||
on: | ||
pull_request: | ||
permissions: | ||
contents: read | ||
jobs: | ||
tfplugindocs: | ||
permissions: | ||
contents: read | ||
pull-requests: read | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Set up Go | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version: 1.18 | ||
- name: Check out code into the Go module directory | ||
uses: actions/checkout@v3 | ||
- name: Get dependencies | ||
run: go mod download | ||
- name: Run tfplugindocs | ||
run: go generate ./... | ||
- name: Fail if any files changed | ||
shell: bash | ||
run: | | ||
if [[ $(git status --porcelain=v1 docs/ | wc -l) -ne 0 ]]; then | ||
echo "Please ensure tfplugindocs changes are committed to docs/" | ||
echo "Changed files:" | ||
git diff --name-only docs/ | ||
git status docs/ | ||
exit 1 | ||
fi |