GH-2356 | Normalize Workflow Permission Expansion For okta_admin_role_custom #3317
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: CI | |
| on: | |
| push: | |
| branches: [master] | |
| pull_request: | |
| branches: [master] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Setup Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version-file: "go.mod" | |
| - name: Setup Terraform | |
| uses: hashicorp/setup-terraform@v4 | |
| with: | |
| terraform_version: "1.14.0" | |
| - name: Setup Go Tools | |
| run: make tools | |
| - name: QC Code | |
| run: make qc | |
| - name: Check Build | |
| run: make build | |
| - name: Test | |
| run: make test | |
| - name: Run VCR acceptance tests | |
| run: | | |
| echo "Running IDaaS tests..." | |
| time make test-play-vcr-acc | |
| echo "Running Governance tests..." | |
| time make test-play-vcr-acc-governance |