This repository has been archived by the owner on Apr 26, 2024. It is now read-only.
[Fix] 472 - wrong aliases values for DeviceDetailsResponse #1974
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Static code analyzer | |
on: | |
pull_request: | |
jobs: | |
analyze_code: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ['3.8', '3.9', '3.10', '3.11'] | |
defaults: | |
run: | |
shell: sh | |
steps: | |
- if: ${{ env.ACT }} | |
name: Hack container for local development | |
run: | | |
curl -fsSL https://deb.nodesource.com/setup_12.x | sudo -E bash - | |
sudo apt-get install -y nodejs | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Set Up Poetry | |
uses: abatilo/actions-poetry@v2 | |
with: | |
poetry-version: 1.3.1 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
poetry install --sync -v | |
mkdir .mypy_cache | |
- name: Checking if imports are sorted correctly | |
run: poetry run isort --check --diff -l 120 --profile black catalystwan | |
- name: Check static-typing | |
run: poetry run mypy --show-error-codes --show-error-context --pretty --install-types --non-interactive catalystwan --cache-dir=.mypy_cache/ | |
- name: Check code style | |
run: poetry run flake8 catalystwan |