Skip to content

Merge pull request #61 from avrae/jokeen/2023w25 #40

Merge pull request #61 from avrae/jokeen/2023w25

Merge pull request #61 from avrae/jokeen/2023w25 #40

Workflow file for this run

name: Code Style
on:
[ push, pull_request ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Install black
run: pip install black
- name: Ensure code is blackified
run: black . --check --diff