Skip to content

integrate keyclaock #89

integrate keyclaock

integrate keyclaock #89

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