-
-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (30 loc) · 1.05 KB
/
Copy pathquality.yml
File metadata and controls
36 lines (30 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# SPDX-License-Identifier: MPL-2.0
# Enforces the MUST.contractile invariants on every PR — the
# "quality.yml runs must-check on every PR" promise in MUST.contractile
# [enforcement] — via the portable must-check enforcer, plus an advisory
# EditorConfig pass. No path filters, so it is always created as a stable check.
name: Code Quality
on:
push:
branches: [main]
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
must-check:
runs-on: ubuntu-latest
timeout-minutes: 10
permissions:
contents: read
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
persist-credentials: false
- name: MUST.contractile invariants (must-check)
run: bash .machine_readable/contractiles/k9/must-check.sh
- name: EditorConfig (advisory)
uses: editorconfig-checker/action-editorconfig-checker@840e866d93b8e032123c23bac69dece044d4d84c # v2.2.0
continue-on-error: true