Skip to content

build(deps): bump actions/checkout from 5.0.0 to 6.0.0 #3434

build(deps): bump actions/checkout from 5.0.0 to 6.0.0

build(deps): bump actions/checkout from 5.0.0 to 6.0.0 #3434

Workflow file for this run

name: Exercise tests
on:
workflow_dispatch:
push:
branches:
- main
- master
pull_request:
jobs:
test:
name: Go ${{ matrix.go-version }} - ${{ matrix.os }}/${{ matrix.test-arch }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
go-version: [1.25.x]
os: [ubuntu-24.04, windows-2025, macOS-latest]
test-arch: [amd64]
race: ["-race"]
include:
- go-version: 1.25.x
test-arch: "386"
os: ubuntu-24.04
race: ""
- go-version: 1.25.x
test-arch: "386"
os: windows-2025
race: ""
steps:
- run: git config --global core.autocrlf false
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3
- uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00
with:
go-version: ${{ matrix.go-version }}
- name: Test exercises
shell: bash
env:
GOARCH: ${{ matrix.test-arch }}
run: ./bin/run-tests