Skip to content

chore(deps): bump github.com/labstack/echo/v4 from 4.13.2 to 4.13.3 #155

chore(deps): bump github.com/labstack/echo/v4 from 4.13.2 to 4.13.3

chore(deps): bump github.com/labstack/echo/v4 from 4.13.2 to 4.13.3 #155

Workflow file for this run

---
name: test
on:
- push
jobs:
lint:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: latest
args: --enable-all
test:
name: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
- run: docker compose up -d --wait
- run: go run main.go migrate
- run: go test -v ./... -covermode=atomic -coverprofile=coverage.out
- uses: codecov/[email protected]
with:
files: coverage.out