Skip to content

feat(sfa): Add archive source file metadata APIs; Bump clp to y-scope/clp@f9b9cc0. #72

feat(sfa): Add archive source file metadata APIs; Bump clp to y-scope/clp@f9b9cc0.

feat(sfa): Add archive source file metadata APIs; Bump clp to y-scope/clp@f9b9cc0. #72

Workflow file for this run

name: "lint"
on:
pull_request:
types: ["opened", "reopened", "synchronize"]
push:
schedule:
# Run daily at 00:15 UTC (the 15 is to avoid periods of high load)
- cron: "15 0 * * *"
workflow_dispatch:
permissions: {}
concurrency:
group: "${{github.workflow}}-${{github.ref}}"
# Cancel in-progress jobs for efficiency
cancel-in-progress: true
jobs:
lint:
strategy:
matrix:
os: ["macos-latest", "ubuntu-latest"]
runs-on: "${{matrix.os}}"
steps:
- uses: "actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8" # v6.0.1
with:
submodules: "recursive"
- name: "Install task"
run: "npm install -g @go-task/cli@3.48.0"
- if: "matrix.os == 'macos-latest'"
name: "Install coreutils (for md5sum)"
run: "brew install coreutils"
- name: "Lint .cpp files (format only)"
run: "task lint:check-cpp-format"
- name: "Lint .js files"
shell: "bash"
run: "task lint:check-js"
- name: "Lint .yaml files"
shell: "bash"
run: "task lint:check-yaml"