Skip to content

build(deps): bump golang from 1.22.3-alpine to 1.22.4-alpine #67

build(deps): bump golang from 1.22.3-alpine to 1.22.4-alpine

build(deps): bump golang from 1.22.3-alpine to 1.22.4-alpine #67

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@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # 5.0.0
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