mirror of
https://github.com/kdeldycke/awesome-falsehood.git
synced 2024-11-20 11:35:56 -05:00
19 lines
430 B
YAML
19 lines
430 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
|
|
# Fetch the last 31 days to please linter's age checks.
|
|
- run: |
|
|
git checkout 'master@{31 days ago}'
|
|
- uses: max/awesome-lint@master
|