diff options
| author | Alex Schofield <git@ajschof.me> | 2024-08-13 15:59:34 +0100 |
|---|---|---|
| committer | Alex Schofield <git@ajschof.me> | 2024-08-13 15:59:34 +0100 |
| commit | 4eef583c0ad16f938bcec1eaaf83ace974b8c667 (patch) | |
| tree | 707d65adef8f1bdb787a50f8a7253ff60e17229b /.github | |
| parent | 43cc61cd535609b59948ba75d8d9ea859bf8d990 (diff) | |
| download | de-project-bentley-4eef583c0ad16f938bcec1eaaf83ace974b8c667.tar.gz de-project-bentley-4eef583c0ad16f938bcec1eaaf83ace974b8c667.zip | |
ci: add python quality checks (separately)
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/python.yml | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml new file mode 100644 index 0000000..4f752b7 --- /dev/null +++ b/.github/workflows/python.yml @@ -0,0 +1,33 @@ +name: python-quality-checks + +on: + push: + branches: [development] + pull_request: + branches: [development, staging] + +jobs: + quality-checks: + 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 +
\ No newline at end of file |
