Skip to content

build(deps): bump golang from 1.22.5-alpine to 1.22.6-alpine #84

build(deps): bump golang from 1.22.5-alpine to 1.22.6-alpine

build(deps): bump golang from 1.22.5-alpine to 1.22.6-alpine #84

Workflow file for this run

name: Go test
on:
pull_request:
branches:
- main
push:
paths:
- .github/workflows/go-test.yml
- src/**
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go-version:
- '1.18.*'
- '1.19.*'
- '1.20.*'
- '1.21.*'
- '1.22.*'
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # 4.1.1
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # 5.0.1
with:
go-version: ${{ matrix.go-version }}
- name: Install dependencies
working-directory: src
run: go get -v .
- name: Test with the Go CLI
working-directory: src
run: go test