Skip to content

Bump github.com/stretchr/testify from 1.8.3 to 1.8.4 #112

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

Bump github.com/stretchr/testify from 1.8.3 to 1.8.4 #112

Workflow file for this run

name: Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
server-test:
strategy:
matrix:
platform: [ubuntu-latest]
go: ['1.18','1.18.3']
runs-on: ${{ matrix.platform }}
steps:
- name: Setup Go
uses: actions/setup-go@v3.3.0
with:
go-version: ${{ matrix.go }}
- name: Checkout code
uses: actions/checkout@v3.1.0
- name: go mod package cache
uses: actions/cache@v3
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ matrix.go }}
- name: Test
run: |
make test
- name: Codecov
uses: codecov/codecov-action@v3.1.1
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./cover.out
flags: unittests
name: codecov-umbrella