Skip to content

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

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

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

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@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # 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