Improve docs and validation wording for vcd_tm_org
resource
#4641
Workflow file for this run
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
name: check-code | |
on: | |
push: | |
paths-ignore: | |
- '**.md' | |
- 'website/**' | |
pull_request: | |
paths-ignore: | |
- '**.md' | |
- 'website/**' | |
jobs: | |
build: | |
name: Check | |
runs-on: ubuntu-latest | |
env: | |
GO111MODULE: on | |
steps: | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v3 | |
- name: Set up Go 1.x | |
uses: actions/setup-go@v3 | |
with: | |
go-version-file: 'go.mod' | |
- name: vet | |
run: make vet | |
- name: static | |
run: make static | |
- name: test | |
run: make test | |
- name: tags | |
run: make tagverify |