Skip to content

Bump github.com/go-playground/universal-translator from 0.17.0 to 0.18.1 #94

Bump github.com/go-playground/universal-translator from 0.17.0 to 0.18.1

Bump github.com/go-playground/universal-translator from 0.17.0 to 0.18.1 #94

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