build(deps): bump go.mongodb.org/mongo-driver from 1.15.0 to 1.15.1 (… #370
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: MongoDB | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
test: | |
name: ${{ matrix.mongodb-version }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
mongodb-version: ["4.4", "5.0", "6.0", "7.0"] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: "go.mod" | |
check-latest: true | |
cache: true | |
cache-dependency-path: "go.sum" | |
- name: Set up MongoDB | |
uses: supercharge/[email protected] | |
with: | |
mongodb-version: ${{ matrix.mongodb-version }} | |
- name: Test packages | |
run: make test-engine-mongodb |