Skip to content

chore(deps): bump github.com/samber/lo from 1.49.1 to 1.50.0 #1289

chore(deps): bump github.com/samber/lo from 1.49.1 to 1.50.0

chore(deps): bump github.com/samber/lo from 1.49.1 to 1.50.0 #1289

Workflow file for this run

name: golangci-lint
on:
push:
tags:
- v*
branches:
- master
- main
pull_request:
permissions:
contents: read
# Optional: allow read access to pull request. Use with `only-new-issues` option.
pull-requests: read
jobs:
fmt:
name: gofumpt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
- name: Install gofumpt
run: go install mvdan.cc/gofumpt@latest
- name: Run gofumpt
run: gofumpt -l .
lint:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
- name: golangci-lint
uses: golangci/golangci-lint-action@v7
with:
only-new-issues: true