Skip to content

Bump github.com/stretchr/testify from 1.10.0 to 1.11.1 #89

Bump github.com/stretchr/testify from 1.10.0 to 1.11.1

Bump github.com/stretchr/testify from 1.10.0 to 1.11.1 #89

Workflow file for this run

name: CI
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ["1.24"]
steps:
- uses: actions/checkout@v4
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.64.7
tests:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ["1.21", "1.22", "1.23", "1.24"]
steps:
- uses: actions/checkout@v4
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Display Go version
run: go version
- name: Run Unit Tests
run: make tests
- uses: codecov/codecov-action@v4
name: Upload Code Coverage
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./morph.coverprofile
fail_ci_if_error: true
verbose: true