updates the documentation for app_signon_policy_rule and list of acceptable value for config office365_client_include #3330
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 |