278 intermittent 503 from google workspace deletes users and its alia… #395
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
| # .github/workflows/main.yaml | |
| name: main | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - release/* | |
| pull_request: | |
| branches: | |
| - master | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v4 | |
| - name: Setup Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: '1.24.x' | |
| - name: Cache development tools | |
| uses: actions/cache@v4 | |
| with: | |
| path: .bin | |
| key: ${{ runner.os }}-tools-${{ hashFiles('Makefile') }} | |
| restore-keys: | | |
| ${{ runner.os }}-tools- | |
| - name: Run tests and linters | |
| run: make ci | |