Files
awesome-falsehood/.github/workflows/lint.yaml
2020-01-11 10:07:15 +01:00

20 lines
409 B
YAML

name: Lint Awesome List
on:
push:
pull_request:
schedule:
# Run linter every week to catch regressions from external dependencies.
- cron: 17 9 * * 1
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
with:
# Fetch all history to please linter's age checks.
fetch-depth: 0
- uses: max/awesome-lint@master