Skip to content

chore(deps): update docker/build-push-action action to v5 #114

chore(deps): update docker/build-push-action action to v5

chore(deps): update docker/build-push-action action to v5 #114

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@v4
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v3
- name: Test
run: go test ./...