c085b899a4
CI / lint (pull_request) Failing after 3s
Gitea migration required all workflows to use ubuntu-latest instead of self-hosted runner label. Co-Authored-By: Paperclip <noreply@paperclip.ing>
20 lines
314 B
YAML
20 lines
314 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v6
|
|
|
|
- name: Lint Markdown
|
|
uses: DavidAnson/markdownlint-cli2-action@v22
|
|
with:
|
|
globs: '**/*.md'
|