fix(deps): bump the python-pip group across 1 directory with 5 updates #279
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: lint | |
on: | |
pull_request: | |
branches: | |
- "main" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
code_lint: | |
runs-on: ubuntu-latest | |
steps: | |
# Checkout the latest code from the repo | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
# Setup which version of Python to use | |
- name: Set Up Python 3.10 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.10' | |
# Display the Python version being used | |
- name: Display Python version | |
run: python -c "import sys; print(sys.version)" | |
# Install the package using the setup.py | |
- name: Lint Check | |
uses: ricardochaves/[email protected] | |
with: | |
python-root-list: "" | |
use-pylint: false | |
use-pycodestyle: false | |
use-flake8: true | |
use-black: false | |
use-mypy: false | |
use-isort: false | |
extra-pylint-options: "" | |
extra-pycodestyle-options: "" | |
extra-flake8-options: "--ignore=E501" | |
extra-black-options: "" | |
extra-mypy-options: "" | |
extra-isort-options: "" | |
commit_lint: | |
name: Conventional Commit Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Commit Lint | |
uses: webiny/[email protected] |