Skip to content
This repository has been archived by the owner on Oct 8, 2024. It is now read-only.

[sc-90424]: Adding default code owners for compliance #105

[sc-90424]: Adding default code owners for compliance

[sc-90424]: Adding default code owners for compliance #105

Workflow file for this run

name: Lint on pull requests (or manually)
on:
pull_request:
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-latest
name: PR - Linters
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Run markdown lint
uses: actionshub/markdownlint@v3.1.4
- name: Run action lint
run: |
echo "::add-matcher::.github/actionlint-matcher.json"
bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash)
./actionlint -color -shellcheck=
shell: bash
- name: Run golangci lint
if: github.event_name == 'pull_request'
uses: reviewdog/action-golangci-lint@v2