Skip to content

Bump golang from 1.22.6-alpine to 1.23.2-alpine #103

Bump golang from 1.22.6-alpine to 1.23.2-alpine

Bump golang from 1.22.6-alpine to 1.23.2-alpine #103

Workflow file for this run

name: CI
on: [push, pull_request]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
name: Go test
steps:
- uses: actions/checkout@v4
- name: Get latest Go version
id: gover
run: echo goversion=$(awk -F':|-' '/^FROM golang/ {print $2}' Dockerfile) >> "$GITHUB_OUTPUT"
- name: Setup go
uses: actions/setup-go@v5
with:
go-version: "${{ steps.gover.outputs.goversion }}"
- run: |
go mod download
go test -race -coverprofile=coverage.txt -covermode=atomic