Skip to content

chore(deps): update golang docker tag to v1.22.5 #199

chore(deps): update golang docker tag to v1.22.5

chore(deps): update golang docker tag to v1.22.5 #199

Workflow file for this run

name: go test
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
strategy:
fail-fast: false
matrix:
go-version: [1.20.x, 1.21.x]
platform: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v4
- name: Test
run: go test ./...