Skip to content

Bump github.com/alecthomas/assert/v2 from 2.4.1 to 2.6.0 #145

Bump github.com/alecthomas/assert/v2 from 2.4.1 to 2.6.0

Bump github.com/alecthomas/assert/v2 from 2.4.1 to 2.6.0 #145

Workflow file for this run

on:
push:
tags:
- v*
branches:
- master
- main
pull_request:
name: Test
jobs:
test:
strategy:
matrix:
go-version: [1.21.5]
os: ["ubuntu-latest"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- uses: actions/checkout@v3
- name: Setup Golang caches
uses: actions/cache@v3
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-golang-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-golang-
- run: make test