Bump go.mongodb.org/mongo-driver from 1.14.0 to 1.15.1 #219
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: CI | |
on: | |
push: | |
branches: | |
permissions: | |
contents: read | |
env: | |
GOFLAGS: -mod=readonly | |
jobs: | |
build_libwekan: | |
name: Build & Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.mod | |
# - name: Lint | |
# uses: golangci/golangci-lint-action@v3 | |
# with: | |
# version: latest | |
# build-tags: | |
# - integration | |
# - name: Run Codacy Analysis CLI | |
# uses: codacy/codacy-analysis-cli-action@v4 | |
- name: Unit Tests | |
run: go test ./... -v -tags integration | |