Skip to content

Bump liskin/gh-problem-matcher-wrap from 2.0.2 to 3.0.0 #226

Bump liskin/gh-problem-matcher-wrap from 2.0.2 to 3.0.0

Bump liskin/gh-problem-matcher-wrap from 2.0.2 to 3.0.0 #226

Workflow file for this run

name: Python Linters
on:
pull_request:
paths-ignore:
- 'docs/**'
- 'notebooks/**'
- 'frontend/**'
- 'sample_data/**'
jobs:
flake8:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: '3.8'
- run: python -m pip install flake8
- uses: liskin/gh-problem-matcher-wrap@e7b7beaaafa52524748b31a381160759d68d61fb
with:
linters: flake8
run: flake8
isort:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: '3.8'
- run: python -m pip install isort
- uses: liskin/gh-problem-matcher-wrap@e7b7beaaafa52524748b31a381160759d68d61fb
with:
linters: isort
run: isort --check --diff studio
black:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: psf/black@stable