Skip to content

Daily Integration Test #297

Daily Integration Test

Daily Integration Test #297

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-22.04, ubuntu-20.04]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Unshallow
run: git fetch --prune --unshallow
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.21"
- name: Setup tools
run: |
make tools
- name: make test
run: |
make test