Skip to content
This repository was archived by the owner on Sep 5, 2025. It is now read-only.

chore(deps): Update actions/checkout action to v5 #128

chore(deps): Update actions/checkout action to v5

chore(deps): Update actions/checkout action to v5 #128

name: ci-go-unit-tests
on:
pull_request:
types:
- opened
- synchronize
- reopened
- ready_for_review
paths:
- "**/*.go"
- "**/go.mod"
- "**/go.sum"
- "**/*.md"
- .github/workflows/*
permissions:
contents: read
actions: write
jobs:
ci-go-tests:
timeout-minutes: 20
name: Test ${{ matrix.os }}
runs-on:
"${{ matrix.os == 'linux' && 'warp-ubuntu-latest-x64-4x' || matrix.os == 'macos' &&
'warp-macos-15-arm64-6x'}}"
strategy:
fail-fast: false
matrix:
os: [linux, macos]
steps:
- uses: actions/checkout@v5
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.24.6
cache-dependency-path: go.sum
- name: Run Unit Tests
run: go test -race -v .