Add GroupOwner
resource
#1467
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: CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: "1.21" | |
- name: Setup Go Tools | |
run: make tools | |
- name: Check Formatting | |
run: make fmtcheck | |
- name: Vet Code | |
run: make vet | |
# skip there is a bug in https://github.com/bflad/tfproviderlint/issues/255 | |
#- name: Lint Code | |
# run: make lint | |
- name: Check Build | |
run: make build | |
- name: Test | |
run: make test | |
- name: Run VCR smoke tests | |
run: make smoke-test-play-vcr-acc |