-
Notifications
You must be signed in to change notification settings - Fork 145
97 lines (90 loc) · 2.82 KB
/
python-app.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Assignment Validation
on:
push:
branches:
- 'main'
pull_request:
jobs:
test:
name: Test Code
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Test with pytest
run: pytest -v
flake8:
name: Check code style
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
pip install flake8
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --max-complexity=10 --max-line-length=80 --statistics
check-doc:
name: Check doc style
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
pip install pydocstyle
- name: Check doc style with pydocstyle
run: pydocstyle
check-changed-files:
name: Check PR state
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Get added files
id: changed-files
uses: tj-actions/[email protected]
- name: Check no added files
run: |
# Check that no file was added in the repo
added_files=${{ steps.changed-files.outputs.added_files }}
if [[ ! -z "$added_files" ]]; then
echo "Do not add unrelated files in pull requests."
echo "Please remove: '$added_files'."
exit 1
fi
- name: Get modified files
id: modified-files
uses: tj-actions/[email protected]
with:
files: |
test_*
.github/**
- name: Check tests not modified
run: |
# Check that no file was added in the repo
any_modified=${{ steps.modified-files.outputs.any_modified }}
all_modified_files=${{ steps.modified-files.outputs.all_modified_files }}
if [[ $any_modified == "true" ]]; then
echo "Do not modify test files: '$all_modified_files'"
exit 1
fi