Skip to content

build(deps): bump go.mongodb.org/mongo-driver from 1.15.0 to 1.17.2 #29

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

build(deps): bump go.mongodb.org/mongo-driver from 1.15.0 to 1.17.2 #29

Workflow file for this run

name: PR Check
on:
pull_request:
branches:
- main
- staging
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v5
with:
cache: true
go-version: 1.21.5
- name: Install dependencies
run: |
echo "deb http://th.archive.ubuntu.com/ubuntu noble main universe" | sudo tee -a /etc/apt/sources.list
go mod download
- name: Test
run: go test -v ./internal/...
- name: Build
run: go build cmd/api/main.go