diff options
| author | Alex Schofield <git@ajschof.me> | 2024-08-13 15:01:37 +0100 |
|---|---|---|
| committer | Alex Schofield <git@ajschof.me> | 2024-08-13 15:01:37 +0100 |
| commit | 3e5a5db92f8c41c7363e1bbf1bbe7593c6fb9aa4 (patch) | |
| tree | 8cd40ece139e8deb0c6c73cd02c7355003275393 /.github/workflows | |
| parent | e122f595a1870ac90df8901f199f34e190e0c1a0 (diff) | |
| download | de-project-bentley-3e5a5db92f8c41c7363e1bbf1bbe7593c6fb9aa4.tar.gz de-project-bentley-3e5a5db92f8c41c7363e1bbf1bbe7593c6fb9aa4.zip | |
ci: initialise quality-checks job
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/deploy.yml | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 0000000..b214678 --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,33 @@ +name: de-project-bentley + +on: + push: + branches: [development, staging] + pull_request: + branches: [main, 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 . + pylint **/*.py + - name : Formatting + run: | + black --check . + - name: Security + run: | + bandit -r . + safety check +
\ No newline at end of file |
