Skip to content

Add tests

Add tests #1

Workflow file for this run

---
name: Lint
on:
push:
branches: [main]
pull_request:
merge_group:
branches: ["**"]
permissions: { }
jobs:
build:
name: Protolint
runs-on: ubuntu-latest
permissions:
contents: read
packages: read
# To report GitHub Actions status checks
statuses: write
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
# super-linter needs the full git history to get the
# list of files that changed across commits
fetch-depth: 0
- name: Lint protocol buffers
uses: super-linter/super-linter@v6
env:
# To report GitHub Actions status checks
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
LINTER_RULES_PATH: .
PROTOBUF_CONFIG_FILE: .protolint.yaml
VALIDATE_PROTOBUF: true