awesome-youtubers/.github/workflows/lint.yml

25 lines
541 B
YAML
Raw Normal View History

2021-02-05 18:55:58 +00:00
name: lint
2021-02-05 18:44:25 +00:00
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
2021-02-05 18:55:58 +00:00
workflow_dispatch:
2021-02-05 18:44:25 +00:00
jobs:
build:
runs-on: ubuntu-latest
steps:
2021-02-05 18:55:58 +00:00
- name: checkout # Checks the repository content
uses: actions/checkout@v2
- name: setup python # Set up to use a specified Python version
uses: actions/setup-python@v2
with:
python-version: 3.9.1 # Use Python version 3.9.1
- name: execute linter # Run the linter/lint.py file
run: |
python linter/lint.py