Skip to content

Bump voxmedia/github-action-slack-notify-build from 1 to 2 #56

Bump voxmedia/github-action-slack-notify-build from 1 to 2

Bump voxmedia/github-action-slack-notify-build from 1 to 2 #56

Workflow file for this run

name: Run style checks
on: [pull_request, workflow_dispatch]
jobs:
style:
runs-on: 'ubuntu-latest'
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.11'
cache: 'pip'
cache-dependency-path: '.github/workflows/style-requirements.txt'
- run: python -m pip install -r .github/workflows/style-requirements.txt
- run: |
python -m black --check --diff .
python -m isort --check --diff .
python -m flake8 .