blob: cec069501b80765ffd50cfc69d3cbc6afd1bf568 (
plain)
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
|
name: staging-checks
on:
push:
branches: [development]
pull_request:
branches: [development, staging]
jobs:
check-if-py-files-exist:
runs-on: ubuntu-latest
outputs:
py_files_exist: ${{ steps.check.outputs.py_files_exist }}
steps:
- uses: actions/checkout@v2
- id: check_files
run: |
if [ -n "$(find . -name '*.py')" ]; then
echo "::set-output name=py_files_exist::true"
else
echo "::set-output name=py_files_exist::false"
fi
python-quality-checks:
needs: check-if-py-files-exist
if: ${{ needs.check-if-py-files-exist.outputs.py_files_exist == 'true' }}
runs-on: ubuntu-latest
steps:
- uses : actions/checkout@v2
- name : Setup
uses : actions/setup-python@v2
with:
python-version: 3.11
- name : Dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pylint black bandit safety
- name : Linting
run: |
flake8 .
find . -name "*.py" | xargs pylint
- name : Formatting
run: |
black --check .
- name: Security
run: |
bandit -r .
safety check
|