mirror of
https://github.com/JoseDeFreitas/awesome-youtubers.git
synced 2024-10-01 01:06:03 -04:00
3a62510f3f
Matches only the main 'readme' file
27 lines
455 B
YAML
27 lines
455 B
YAML
name: lint
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
paths: 'readme.md'
|
|
pull_request:
|
|
branches: [ main ]
|
|
paths: 'readme.md'
|
|
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
- name: Setup Python
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: 3.9.1
|
|
- name: Execute linter
|
|
run: |
|
|
python linter/lint.py
|