File tree Expand file tree Collapse file tree 2 files changed +34
-9
lines changed
Expand file tree Collapse file tree 2 files changed +34
-9
lines changed Original file line number Diff line number Diff line change 1+ name : Pylint
2+
3+ on :
4+ push :
5+ branches :
6+ - master
7+ tags :
8+ - ' *'
9+ pull_request : {}
10+ workflow_dispatch :
11+
12+ jobs :
13+ lint :
14+ runs-on : ubuntu-latest
15+
16+ strategy :
17+ matrix :
18+ python-version : [3.6]
19+
20+ steps :
21+ - name : Install ldap dependencies
22+ run : sudo apt-get update && sudo apt-get install libldap2-dev libsasl2-dev
23+ - uses : actions/checkout@v2
24+ - name : Set up Python ${{ matrix.python-version }}
25+ uses : actions/setup-python@v2
26+ with :
27+ python-version : ${{ matrix.python-version }}
28+ - name : Install dependencies
29+ run : |
30+ python -m pip install --upgrade pip
31+ pip install -r requirements.txt
32+ - name : Lint with pylint
33+ run : |
34+ pylint audiophiler
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments