Skip to content

Streamline crontab display in schedules list (#352) #851

Streamline crontab display in schedules list (#352)

Streamline crontab display in schedules list (#352) #851

Workflow file for this run

name: Linters
on:
pull_request:
paths-ignore:
- "docs/**"
push:
branches:
- main
paths-ignore:
- "docs/**"
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
flake8:
name: flake8
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- run: python -m pip install flake8
- name: flake8
# Adds annotations to PRs
uses: liskin/gh-problem-matcher-wrap@v1
with:
linters: flake8
run: flake8
isort:
runs-on: ubuntu-latest
strategy:
matrix:
component: [functionary, cli, runner]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- run: python -m pip install isort
- name: isort ${{ matrix.component }}
# Adds annotations to PRs
uses: liskin/gh-problem-matcher-wrap@v1
with:
linters: isort
run: isort --check --diff ${{ matrix.component }}
black:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: black
uses: psf/black@stable