Skip to content

Bump go.mongodb.org/mongo-driver from 1.13.1 to 1.14.0 #436

Bump go.mongodb.org/mongo-driver from 1.13.1 to 1.14.0

Bump go.mongodb.org/mongo-driver from 1.13.1 to 1.14.0 #436

Workflow file for this run

name: Lint & Test
on:
push:
paths:
- '**.go'
- 'go.mod'
- 'go.sum'
- 'revive.toml'
- '.github/workflows/lint-test.yaml'
pull_request:
types: [opened, edited, synchronize, reopened]
paths:
- '**.go'
- 'go.mod'
- 'go.sum'
- 'revive.toml'
- '.github/workflows/lint-test.yaml'
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.21'
check-latest: true
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Run Revive Action
uses: docker://morphy/revive-action:v2
with:
config: revive.toml
- name: Check formatting
run: test -z $(gofmt -l .) || (gofmt -l . && exit 1)
test:
name: Test
runs-on: ubuntu-latest
services:
mongo:
image: mongo:6.0
ports:
- 27017:27017
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.21'
check-latest: true
- uses: actions/cache@v4
env:
cache-name: test
with:
path: |
~/go/pkg/mod
~/.cache/go-build
key: go-${{ env.cache-name }}-${{ hashFiles('**/go.sum') }}
restore-keys: |
go-${{ env.cache-name }}-
- name: Get dependencies
run: go get -v -t -d ./...
- name: Run tests
env:
MONGO_URI: mongodb://127.0.0.1:27017/rest-api
MONGO_DB: rest-api
JWT_KEY: SKbVAbC4GqtRSnjiKCSH27Pu
JWT_AUDIENCE: testing-workflow
run: go test -v ./...