Skip to content

Bump github.com/stretchr/testify from 1.8.2 to 1.8.3 #85

Bump github.com/stretchr/testify from 1.8.2 to 1.8.3

Bump github.com/stretchr/testify from 1.8.2 to 1.8.3 #85

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.18', '1.17', '1.16', '1.15', '1.14', '1.13' ]
tags: [ 'strftime_native_errors', '' ]
fail-fast: false
name: "Go ${{ matrix.go }} test (tags: ${{ matrix.tags }})"
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install Go stable version
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
- name: Test with coverage
run: make STRFTIME_TAGS=${{ matrix.tags }} cover
- name: Upload code coverage to codecov
if: matrix.go == '1.18'
uses: codecov/codecov-action@v3
with:
file: ./coverage.out