mirror of
https://github.com/willshersystems/ansible-sshd
synced 2024-11-25 04:20:18 +01:00
625b74a2cc
* markdownlint runs against README.md to avoid any issues with converting it to HTML * test_converting_readme converts README.md > HTML and uploads this test artifact to ensure that conversion works fine * build_docs converts README.md > HTML and pushes the result to the docs branch to publish dosc to GitHub pages site
34 lines
698 B
YAML
34 lines
698 B
YAML
---
|
|
# yamllint disable rule:line-length
|
|
name: Markdown Lint
|
|
on: # yamllint disable-line rule:truthy
|
|
pull_request:
|
|
merge_group:
|
|
branches:
|
|
- main
|
|
types:
|
|
- checks_requested
|
|
push:
|
|
branches:
|
|
- main
|
|
workflow_dispatch:
|
|
permissions:
|
|
contents: read
|
|
jobs:
|
|
markdownlint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Update pip, git
|
|
run: |
|
|
set -euxo pipefail
|
|
sudo apt update
|
|
sudo apt install -y git
|
|
|
|
- name: Check out code
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Lint README.md
|
|
uses: docker://avtodev/markdown-lint:master
|
|
with:
|
|
args: README.md
|
|
config: .markdownlint.yaml
|