Skip to content

build(deps): bump the actions group across 1 directory with 9 updates #1139

build(deps): bump the actions group across 1 directory with 9 updates

build(deps): bump the actions group across 1 directory with 9 updates #1139

Workflow file for this run

name: Go Test
on:
pull_request:
workflow_dispatch:
branches: [ '**' ]
jobs:
full_ci:
strategy:
matrix:
go_version: [ 1.25.x ]
runs-on: ubuntu-24.04
steps:
- name: checkout
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- name: Set up Go
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version: ${{ matrix.go_version }}
- name: run tests
run: go test -json ./... > test.json
- name: Annotate tests
if: always()
uses: guyarb/golang-test-annotations@2941118d7ef622b1b3771d1ff6eae9e90659eb26 # v0.8.0
with:
test-results: test.json