Skip to content

fix(deps): update module github.com/labstack/echo/v4 to v4.11.3 #106

fix(deps): update module github.com/labstack/echo/v4 to v4.11.3

fix(deps): update module github.com/labstack/echo/v4 to v4.11.3 #106

Workflow file for this run

name: Test
on: [ push, pull_request ]
jobs:
test:
strategy:
matrix:
go-version: [ "1.18", "1.19", "1.20", "1.21" ]
os: [ ubuntu-latest, macos-latest, windows-latest ]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Checkout
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4
- name: Enforce standard format
uses: golangci/golangci-lint-action@v3
with:
version: v1.54.2
args: --timeout 3m --tests=false --enable=gofmt --verbose
- name: Test
run: go test --cover -v ./...
- name: Build
run: go build -v ./...