Skip to content

fix(deps): update all patch and minor #334

fix(deps): update all patch and minor

fix(deps): update all patch and minor #334

Workflow file for this run

---
name: test
on:
push:
branches:
- main
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
pull_request:
branches:
- main
jobs:
test:
strategy:
matrix:
os:
- ubuntu-22.04
- macos-14
- windows-2022
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
- name: Install Go
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5
with:
go-version: '1.25'
- name: Lint
if: ${{ matrix.os == 'ubuntu-22.04' }}
run: make lint
- name: Test
run: make test
- name: Publish coverage to coveralls.io
uses: shogo82148/actions-goveralls@25f5320d970fb565100cf1993ada29be1bb196a1 # v1
if: ${{ matrix.os == 'ubuntu-22.04' }}
with:
path-to-profile: coverage.out
- name: Build
run: make build