Skip to content

build(deps): bump github.com/jackc/tern/v2 from 2.2.0 to 2.2.1 #1197

build(deps): bump github.com/jackc/tern/v2 from 2.2.0 to 2.2.1

build(deps): bump github.com/jackc/tern/v2 from 2.2.0 to 2.2.1 #1197

Workflow file for this run

name: Test
on: push
jobs:
test:
strategy:
matrix:
go-version: [1.22.x]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v4
- name: Test
run: go test -shuffle=on -race -coverprofile=coverage.txt -covermode=atomic ./...
- name: Vet
run: go vet ./...
- name: Codecov
run: bash <(curl -s https://codecov.io/bash)