aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/workflow.yml
blob: 0318ee66906ce59ed476fd6520b86159fb6208f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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"