Clean up PolicyBindings when user invitations are deleted (#543) #1740
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: "IAM API testing" | |
| on: | |
| push: | |
| paths: | |
| - '**/*.go' | |
| - 'go.mod' | |
| - 'go.sum' | |
| jobs: | |
| iam_integration_tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v5 | |
| - name: Install dependencies | |
| run: go mod download | |
| - name: Run IAM tests | |
| run: go test -timeout 5m ./... |