Skip to content

Daily Integration Test #6

Daily Integration Test

Daily Integration Test #6

Workflow file for this run

name: Daily Integration Test
on:
schedule:
- cron: '30 23 * * *'
workflow_dispatch:
env:
GOPROXY: https://proxy.golang.org
jobs:
test:
name: test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest, ubuntu-24.04, ubuntu-22.04]
steps:
- name: Checkout
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- name: Unshallow
run: git fetch --prune --unshallow
- name: Set up Go
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
with:
go-version-file: 'go.mod'
- name: Setup tools
run: |
make tools
- name: make test
run: |
make test