Skip to content

fix(deps): update all non-major dependencies in .github/workflows/test.yaml #149

fix(deps): update all non-major dependencies in .github/workflows/test.yaml

fix(deps): update all non-major dependencies in .github/workflows/test.yaml #149

Workflow file for this run

name: Test
on:
push:
branches:
- main
paths-ignore:
- "**/*.md"
- "LICENSE"
pull_request:
paths-ignore:
- "**/*.md"
- "LICENSE"
env:
GO_VERSION: '1.22'
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Install Go
uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5
with:
go-version: ${{ env.GO_VERSION }}
cache: true
- name: Lint
run: go run mage.go lint
- name: Tests
run: go run mage.go test
- name: Build
run: go run mage.go build