provider/pd: include scheduleTime on check-in early/late errors #65
This file contains 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: Go | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
name: Go Build | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
steps: | |
- name: Set up Go 1.x | |
uses: actions/setup-go@v5 | |
with: | |
go-version: stable | |
id: go | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v4 | |
- name: Install make (Windows) | |
if: runner.os == 'Windows' | |
run: choco install -y make mingw | |
- name: Long Tests | |
if: runner.os == 'Linux' | |
run: make check | |
env: | |
GOTEST_FLAGS: "-v" | |
DEADCHECK_ESCALATION_POLICY: ${{ secrets.DEADCHECK_ESCALATION_POLICY }} | |
DEADCHECK_PAGERDUTY_API_KEY: ${{ secrets.DEADCHECK_PAGERDUTY_API_KEY }} | |
- name: Short Tests | |
if: runner.os != 'Linux' | |
run: make check | |
env: | |
GOTEST_FLAGS: "-short -v" | |
docker: | |
name: Docker Build | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
steps: | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v4 | |
- name: Docker Build | |
run: make docker |