mirror of
https://github.com/spotipy-dev/spotipy.git
synced 2026-06-19 01:03:53 +00:00
Add Github action to check lint
This commit is contained in:
parent
b1ceab2b8f
commit
5928981e3b
23
.github/workflows/pythonapp.yml
vendored
Normal file
23
.github/workflows/pythonapp.yml
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
name: Python application
|
||||
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: Set up Python 3.7
|
||||
uses: actions/setup-python@v1
|
||||
with:
|
||||
python-version: 3.7
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
pip install -r requirements.txt
|
||||
- name: Lint with flake8
|
||||
run: |
|
||||
pip install flake8
|
||||
flake8 . --count --show-source --statistics
|
||||
Loading…
Reference in New Issue
Block a user