From 5964ca3dad92a1d8af3171784ec8d90a98156809 Mon Sep 17 00:00:00 2001 From: Lunny Xiao <xiaolunwen@gmail.com> Date: Fri, 14 Apr 2023 13:32:24 +0800 Subject: [PATCH] add markdown lint --- .gitea/workflows/lint.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .gitea/workflows/lint.yml diff --git a/.gitea/workflows/lint.yml b/.gitea/workflows/lint.yml new file mode 100644 index 0000000..ead0421 --- /dev/null +++ b/.gitea/workflows/lint.yml @@ -0,0 +1,12 @@ +name: lint +on: + - push + - pull_request + +jobs: + lint: + name: lint + runs-on: ubuntu-latest + steps: + - name: lint + uses: articulate/actions-markdownlint@v1 \ No newline at end of file