fix(deps): update module go.mongodb.org/mongo-driver to v1.14.0 - autoclosed #56
Workflow file for this run
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: Lint on Pull Request | |
on: | |
pull_request: | |
branches: | |
- 'feature/**' | |
- 'bug/gh-**' | |
- 'issue/gh-**' | |
- staging | |
- master | |
paths-ignore: | |
- '.github/**' | |
- '.vscode/**' | |
- 'assets/**' | |
- 'docker/**' | |
- '.idea/**' | |
- '.dockerignore' | |
- '.gitignore' | |
- '**.md' | |
- 'LICENSE' | |
- 'renovate.json' | |
permissions: | |
contents: read | |
pull-requests: read | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Setup Go 1.17 | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.17 | |
- name: Install dependencies | |
run: go mod download && go get | |
- name: Build project to see if it compiles | |
run: make build | |
- name: Format project for any formatting to apply | |
run: make fmt |