1
0
Fork 0
mirror of https://github.com/kdeldycke/awesome-falsehood.git synced 2024-11-20 11:35:56 -05:00
falsehood/.github/workflows/lint.yaml

20 lines
430 B
YAML
Raw Normal View History

2020-01-09 08:22:41 -05:00
name: Lint Awesome List
2020-01-11 03:53:13 -05:00
on:
2020-01-11 03:55:00 -05:00
push:
pull_request:
2020-01-11 03:53:13 -05:00
schedule:
# Run linter every week to catch regressions from external dependencies.
- cron: 17 9 * * 1
2020-01-09 08:40:27 -05:00
2020-01-09 08:22:41 -05:00
jobs:
2020-01-09 08:40:27 -05:00
2020-01-09 08:22:41 -05:00
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