Skip to content

Bump golang.org/x/crypto from 0.25.0 to 0.30.0 #97

Bump golang.org/x/crypto from 0.25.0 to 0.30.0

Bump golang.org/x/crypto from 0.25.0 to 0.30.0 #97

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