Skip to content

chore(deps): bump go to v1.26.6 #278

chore(deps): bump go to v1.26.6

chore(deps): bump go to v1.26.6 #278

Workflow file for this run

---
# This workflow will run the tests across a matrix of operating systems.
name: Go Test
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
jobs:
go-tests:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
name: Go Tests (${{ matrix.os }})
steps:
- name: Checkout Repository
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Setup Go
uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0
with:
go-version-file: go.mod
cache: true
- name: Run Tests
shell: bash
run: |
echo "Testing with $(go env GOVERSION) on ${{ matrix.os }}"
if [[ "${{ matrix.os }}" == "ubuntu-latest" ]]; then
go test -race -count 1 ./... -timeout=3m
else
go test -count 1 ./... -timeout=3m
fi