Skip to content

build(deps): bump go.mongodb.org/mongo-driver from 1.12.1 to 1.16.0 #407

build(deps): bump go.mongodb.org/mongo-driver from 1.12.1 to 1.16.0

build(deps): bump go.mongodb.org/mongo-driver from 1.12.1 to 1.16.0 #407

Workflow file for this run

name: Go
on: [push]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.20
uses: actions/setup-go@v4
with:
go-version: "1.20"
id: go
- name: Set up Node.js 20.x
uses: actions/setup-node@v3
with:
node-version: 20.x
- name: Check out
uses: actions/checkout@v3
- name: Go mod download
run: go mod download
- name: Build
run: go build -v ./cmd/server
- name: Test
run: make test
- name: Golint
run: |
go install golang.org/x/lint/golint@latest
golint -set_exit_status ./...
- name: ESLint
run: |
npm i
npm run lint