Skip to content

Merge pull request #12 from philiporlando/update-style-gh-action #8

Merge pull request #12 from philiporlando/update-style-gh-action

Merge pull request #12 from philiporlando/update-style-gh-action #8

Workflow file for this run

name: Python Style Checker
on: [push, pull_request]
jobs:
style-check:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
pip install black
- name: Lint with Black
run: black --check .
continue-on-error: true