Skip to content

Add dependabot config for GitHub Actions #17

Add dependabot config for GitHub Actions

Add dependabot config for GitHub Actions #17

Workflow file for this run

name: Style
on: [pull_request, workflow_dispatch]
jobs:
style:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: '3.12'
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 .