Skip to content

Daily Integration Test #7

Daily Integration Test

Daily Integration Test #7

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]
go-version: [stable, oldstable]
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@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0
with:
go-version: ${{ matrix['go-version'] }}
- name: Setup tools
run: |
make tools
- name: make test
run: |
make test