Skip to content

chore(deps): pin dependencies #47

chore(deps): pin dependencies

chore(deps): pin dependencies #47

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.21'
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
- name: Install Go
uses: actions/setup-go@6edd4406fa81c3da01a34fa6f6343087c207a568 # v3
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