Skip to content

Commit

Permalink
chore: common checks workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
angrybayblade committed Mar 6, 2024
1 parent d5bdc89 commit 2b0ca33
Showing 1 changed file with 50 additions and 0 deletions.
50 changes: 50 additions & 0 deletions .github/workflows/common_checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: main_workflow
on:
push:
branches:
- develop
- main
pull_request:
jobs:
linter_checks:
continue-on-error: False
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.10.9"]
timeout-minutes: 30
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@master
with:
python-version: ${{ matrix.python-version }}
- uses: actions/setup-go@v3
with:
go-version: "1.17.7"
- name: Install dependencies
run: |
sudo apt-get update --fix-missing
sudo apt-get autoremove
sudo apt-get autoclean
pip install tomte[tox]==0.2.15
pip install --user --upgrade setuptools
sudo npm install -g markdown-spellcheck
- name: Security checks
run: |
tox -p -e bandit -e safety
- name: Code style check
run: |
tox -p -e black-check -e isort-check
- name: Flake7
run: |
tox -e flake8
- name: Pylint
run: tox -e pylint
- name: Static type check
run: tox -e mypy
# - name: Check spelling
# run: tox -e spell-check
# - name: License compatibility check
# run: tox -e liccheck
# tox -p -e vulture -e darglint

0 comments on commit 2b0ca33

Please sign in to comment.