Skip to content

Bump github.com/labstack/echo/v4 from 4.11.1 to 4.11.2 #107

Bump github.com/labstack/echo/v4 from 4.11.1 to 4.11.2

Bump github.com/labstack/echo/v4 from 4.11.1 to 4.11.2 #107

Workflow file for this run

name: CI Pipeline
on:
push:
branches:
- main
pull_request:
branches:
- main
env:
GO_VERSION: '1.20'
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: golangci-lint
uses: golangci/[email protected]
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: ${{ env.GO_VERSION }}
- name: Mod Download
run: go mod download
- name: Build
run: go build
test:
name: Test
runs-on: ubuntu-latest
needs: [build]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: ${{ env.GO_VERSION }}
- name: Run Test
run: go test ./... -v