Skip to content

build(deps): bump golang from 1.23.2-alpine to 1.23.3-alpine #218

build(deps): bump golang from 1.23.2-alpine to 1.23.3-alpine

build(deps): bump golang from 1.23.2-alpine to 1.23.3-alpine #218

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request_target:
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Configure
id: configure
shell: bash
run: |
sed -En 's/^go (.*)$/GO_VERSION=\1/p' go.mod >> $GITHUB_ENV
- uses: actions/setup-go@v5
with:
go-version: "~${{ env.GO_VERSION }}"
- name: Test
run: go test -json ./... > test.json
- name: Annotate tests
if: always()
uses: guyarb/[email protected]
with:
test-results: test.json