aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorDario Vladovic <[email protected]>2020-07-18 22:15:01 +0200
committerVarunram Ganesh <[email protected]>2020-08-02 22:59:45 +0530
commit7d5e87379399fc559994d5156a19ba0dc6dc11c7 (patch)
treed13861c370c8b9644b96d7de18a806ffdab56c7a /.github
parentffb5e19b2ee58e2c2774453b718c13b3054c8d64 (diff)
downloadawesome-regex-7d5e87379399fc559994d5156a19ba0dc6dc11c7.tar.xz
awesome-regex-7d5e87379399fc559994d5156a19ba0dc6dc11c7.zip
Lint Markdown using `avto-dev/markdown-lint` action
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/workflow.yml20
1 files changed, 20 insertions, 0 deletions
diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml
new file mode 100644
index 0000000..0318ee6
--- /dev/null
+++ b/.github/workflows/workflow.yml
@@ -0,0 +1,20 @@
+name: Main workflow
+
+on:
+ push:
+ branches: "**"
+ tags: "**"
+ pull_request:
+
+jobs:
+ markdownlint:
+ name: MarkdownLint
+ runs-on: ubuntu-latest
+ steps:
+ - name: Check out code
+ uses: actions/checkout@v2
+
+ - name: Lint README
+ uses: avto-dev/[email protected]
+ with:
+ args: "README.md"