e20cd5d6bd
The ARC runner label was changed org-wide to runners-privilegedescalation. This repo was still using the old local-ubuntu-latest label. Co-authored-by: Hugh Hackman <hugh@privilegedescalation.com>
20 lines
329 B
YAML
20 lines
329 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: runners-privilegedescalation
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v6
|
|
|
|
- name: Lint Markdown
|
|
uses: DavidAnson/markdownlint-cli2-action@v22
|
|
with:
|
|
globs: '**/*.md'
|