Skip to content

Bump github.com/samber/lo from 1.47.0 to 1.49.1 #344

Bump github.com/samber/lo from 1.47.0 to 1.49.1

Bump github.com/samber/lo from 1.47.0 to 1.49.1 #344

Workflow file for this run

name: Go
on: [push, pull_request]
jobs:
test:
strategy:
matrix:
go:
- "1.22"
- "1.23"
name: Build
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
go-version-file: ./go.mod
cache: true
- name: Build & Test
run: |
go mod download
make download-assets
go test -race -v ./...
env:
TZ: Asia/Tokyo # for time.Local
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}