File tree Expand file tree Collapse file tree 1 file changed +34
-0
lines changed Expand file tree Collapse file tree 1 file changed +34
-0
lines changed Original file line number Diff line number Diff line change 1+ name : NiaARM
2+
3+ on :
4+ push :
5+ branches : [ main ]
6+ pull_request :
7+ branches : [ main ]
8+
9+ jobs :
10+ build :
11+
12+ runs-on : ubuntu-latest
13+
14+ steps :
15+ - uses : actions/checkout@v2
16+ - name : Set up Python 3.9
17+ uses : actions/setup-python@v2
18+ with :
19+ python-version : " 3.9"
20+ - name : Install dependencies
21+ run : |
22+ python -m pip install --upgrade pip
23+ pip install flake8 pytest numpy niapy pandas
24+ if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
25+ - name : Lint with flake8
26+ run : |
27+ # stop the build if there are Python syntax errors or undefined names
28+ flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
29+ # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
30+ flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
31+ - name : Test with pytest
32+ run : |
33+ pytest
34+
You can’t perform that action at this time.
0 commit comments