Skip to content

Bump github.com/dimfeld/httptreemux/v5 from 5.0.2 to 5.5.0 #90

Bump github.com/dimfeld/httptreemux/v5 from 5.0.2 to 5.5.0

Bump github.com/dimfeld/httptreemux/v5 from 5.0.2 to 5.5.0 #90

Workflow file for this run

name: test and build
on:
pull_request:
branches:
- develop
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: 'stable'
- name: build metrics-api
run: make metrics
- name: build books-api
run: make books-api
test:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: 'stable'
- name: Test all
run: make test-only