-
Notifications
You must be signed in to change notification settings - Fork 434
42 lines (36 loc) · 891 Bytes
/
ci.yml
File metadata and controls
42 lines (36 loc) · 891 Bytes
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
37
38
39
40
41
name: ci
on: [push, pull_request]
permissions:
contents: read
pull-requests: read
jobs:
# TODO: #572 - needs improvements
# build:
# runs-on: ubuntu-latest
# name: Check
# steps:
# - name: Checkout
# uses: actions/checkout@main
# - name: Check
# run: ./check.sh
markdownlint:
runs-on: ubuntu-latest
name: Markdownlint
steps:
- name: Checkout
uses: actions/checkout@main
- name: Markdownlint
uses: nosborn/github-action-markdown-cli@85611bef0da53168168939754ff9d8f6073a8fec
with:
files: "*.md"
config_file: .markdownlint.json
ensure_sorted:
runs-on: ubuntu-latest
permissions:
contents: read
name: Ensure sorted
steps:
- name: Checkout
uses: actions/checkout@main
- name: Ensure sorted
run: python3 ensure_sorted.py