From da505fefe9d7903c7103612d29586b6cfc4b304d Mon Sep 17 00:00:00 2001 From: "A. Schulze" Date: Tue, 14 Nov 2023 21:40:36 +0100 Subject: [PATCH] workflow: markdownlint --- .github/workflows/markdownlint.yml | 12 ++++++++++++ README.md | 2 ++ 2 files changed, 14 insertions(+) create mode 100644 .github/workflows/markdownlint.yml diff --git a/.github/workflows/markdownlint.yml b/.github/workflows/markdownlint.yml new file mode 100644 index 0000000..49a3856 --- /dev/null +++ b/.github/workflows/markdownlint.yml @@ -0,0 +1,12 @@ +name: markdownlint +on: + push: + pull_request: +jobs: + run_markdownlint: + runs-on: ubuntu-latest + steps: + - name: checkout + uses: actions/checkout@v4 + - name: Run markdownlint + uses: actionshub/markdownlint@main diff --git a/README.md b/README.md index 2df13e8..64fecdf 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # openssl-demo-server +[![markdownlint](https://github.com/andreasschulze/openssl-demo-server/actions/workflows/markdownlint.yml/badge.svg)](https://github.com/andreasschulze/openssl-demo-server/actions/workflows/markdownlint.yml) + Example program to implement a TLS server. It was written for demonstration and educational purposes.