Skip to content

278 intermittent 503 from google workspace deletes users and its alia… #395

278 intermittent 503 from google workspace deletes users and its alia…

278 intermittent 503 from google workspace deletes users and its alia… #395

Workflow file for this run

# .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