Skip to content

feat: update github actions #358

feat: update github actions

feat: update github actions #358

Workflow file for this run

on:
pull_request:
paths:
- '**/*.go'
- '**/*.mod'
- '**/*.sum'
- '**/*.yml'
name: "Go test"
jobs:
test:
strategy:
matrix:
go-version: [dev-latest]
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: kevincobain2000/action-gobrew@v2
with:
version: ${{ matrix.go-version }}
- name: Test
run: go test -v ./...
shell: bash