Skip to content

chore(deps): bump github.com/labstack/echo/v4 from 4.10.2 to 4.11.1 #394

chore(deps): bump github.com/labstack/echo/v4 from 4.10.2 to 4.11.1

chore(deps): bump github.com/labstack/echo/v4 from 4.10.2 to 4.11.1 #394

Workflow file for this run

name: Test and build
on:
pull_request:
types: [opened]
push:
jobs:
tests:
name: Test on go ${{ matrix.go_version }} os ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
go_version: [1.18, 1.19]
os: [ubuntu-latest]
include:
- go_version: 1.19
os: macos-latest
steps:
- uses: actions/checkout@v1
- name: Use golang ${{ matrix.go_version }}
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go_version }}
- name: Go version
run: |
go version
- name: Go get dependencies
run: |
go get -v -t -d ./...
- name: Run tests
run: |
go test ./... -count=1 -race -cover -coverprofile cover.out
- name: Build
run: |
go build -v .
- name: Send the coverage output
uses: shogo82148/actions-goveralls@v1
with:
path-to-profile: cover.out