Skip to content

Bump golang.org/x/crypto from 0.0.0-20220525230936-793ad666bf5e to 0.17.0 in /client #137

Bump golang.org/x/crypto from 0.0.0-20220525230936-793ad666bf5e to 0.17.0 in /client

Bump golang.org/x/crypto from 0.0.0-20220525230936-793ad666bf5e to 0.17.0 in /client #137

Workflow file for this run

name: Go CI build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
mongodb-version: ['4.4.14', '5.0.9', '6.0.11', '7.0.2', 'latest']
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.21
- name: Build
run: |
cd web
make
- name: Start MongoDB
uses: MongoCamp/[email protected]
with:
mongodb-version: ${{ matrix.mongodb-version }}
mongodb-port: 8230
- name: Test
run: |
cd web
make test
- name: schema check
run: |
cd web/schemas
go build
ls *.json | awk '{print "echo \"validate "$1"\"; ./validator -schema "$1""}' | /bin/sh