Skip to content

APP-3868 - updated all submodule #485

APP-3868 - updated all submodule

APP-3868 - updated all submodule #485

Workflow file for this run

name: Lint Project
on:
push:
branches: [develop, main]
pull_request:
branches: [develop, main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.11']
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
submodules: recursive
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[dev,test]
pip freeze
- name: Lint with pre-commit
run: |
pre-commit --version
pre-commit install
pre-commit run --all-files