Skip to content

Commit

Permalink
Merge pull request #168 from tosuke/cron-test-gotip
Browse files Browse the repository at this point in the history
Test with gotip
  • Loading branch information
yseto authored Feb 7, 2025
2 parents 275b867 + cf10384 commit 011e342
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/tip-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Test with gotip

on:
schedule:
- cron: "0 1 * * 1-5"

jobs:
test:
strategy:
fail-fast: false
matrix:
os-version: ["ubuntu-22.04", "windows-2022", "macos-14", "windows-2025"]
runs-on: ${{ matrix.os-version }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: stable
cache: false
- name: Install gotip
shell: bash
run: |
go install golang.org/dl/gotip@latest
GOROOT_BOOTSTRAP="$(go env GOROOT)" gotip download
- name: Test
shell: bash
run: gotip test -race ./...

0 comments on commit 011e342

Please sign in to comment.