Skip to content

Commit

Permalink
Test with gotip
Browse files Browse the repository at this point in the history
  • Loading branch information
tosuke committed Feb 6, 2025
1 parent 275b867 commit cf10384
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 cf10384

Please sign in to comment.