From eaa511eeef048c571a3252fb8333b316b850c520 Mon Sep 17 00:00:00 2001 From: Yegor Bugayenko Date: Tue, 5 Mar 2024 20:31:03 +0300 Subject: [PATCH] #20 lint --- .github/workflows/markdown-lint.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/markdown-lint.yml diff --git a/.github/workflows/markdown-lint.yml b/.github/workflows/markdown-lint.yml new file mode 100644 index 0000000..6ae0d3b --- /dev/null +++ b/.github/workflows/markdown-lint.yml @@ -0,0 +1,19 @@ +--- +name: markdown-lint +on: + push: + branches: + - master + pull_request: + branches: + - master + paths-ignore: [ 'paper/**', 'sandbox/**' ] +concurrency: + group: markdown-lint-${{ github.ref }} + cancel-in-progress: true +jobs: + markdown-lint: + runs-on: ubuntu-22.04 + steps: + - uses: actions/checkout@b32f140b0c872d58512e0a66172253c302617b90 + - uses: articulate/actions-markdownlint@v1