Skip to content

feat(audit_trail): add mongodb resources #1600

feat(audit_trail): add mongodb resources

feat(audit_trail): add mongodb resources #1600

Workflow file for this run

name: Lint
permissions:
contents: read
on:
pull_request:
merge_group:
jobs:
actionlint:
name: Github Actions lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Check workflow files
uses: docker://rhysd/actionlint:latest
with:
args: -color -ignore SC2086
dockerlint:
name: dockerfile-lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: dockerfile-lint
run: docker build --check .
golangci:
name: golangci-lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: golangci-lint
uses: golangci/golangci-lint-action@1e7e51e771db61008b38414a730f564565cf7c20 # v9.2.0
with:
# Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version.
version: v2.9.0
args: --timeout 10m
spelling:
name: Spell Check with Typos
runs-on: ubuntu-latest
steps:
- name: Checkout Actions Repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Spell Check Repo
uses: crate-ci/typos@9066e9940a8a05b98fb4733c62a726f83c9e57f8 # v1.43.3
env:
CLICOLOR: 1