Skip to content

Commit c62590b

Browse files
committed
Merge branch 'current' into next
2 parents a99f785 + 22faa44 commit c62590b

File tree

2 files changed

+28
-43
lines changed

2 files changed

+28
-43
lines changed

.github/workflows/ci.yml

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: CI
22

33
on:
44
pull_request:
5-
types: [opened, reopened, synchronize]
5+
types: [opened, edited, reopened, synchronize]
66

77
permissions:
88
contents: read
@@ -40,3 +40,30 @@ jobs:
4040

4141
- name: Run production build
4242
run: make production
43+
lint:
44+
name: Lint
45+
runs-on: ubuntu-latest
46+
steps:
47+
- name: Checkout
48+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
49+
50+
- name: Set up Python 3.12
51+
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
52+
with:
53+
python-version: 3.12
54+
55+
- name: Install dependencies
56+
run: pip install -r requirements_test.txt
57+
58+
- name: Register problem matchers
59+
run: |
60+
echo "::add-matcher::.github/workflows/matchers/ci-custom.json"
61+
62+
- name: markdownlint-cli
63+
uses: nosborn/github-action-markdown-cli@508d6cefd8f0cc99eab5d2d4685b1d5f470042c1 # v3.5.0
64+
with:
65+
config_file: ".markdownlintrc"
66+
files: .
67+
68+
- name: Lint
69+
run: python lint.py

.github/workflows/lint.yml

Lines changed: 0 additions & 42 deletions
This file was deleted.

0 commit comments

Comments
 (0)