Skip to content

🔧 removed additional wiki-unsafe brackets & replaced them w/ round ones #21

🔧 removed additional wiki-unsafe brackets & replaced them w/ round ones

🔧 removed additional wiki-unsafe brackets & replaced them w/ round ones #21

Workflow file for this run

name: Run checks on pull requests and pushes
on: [ push, pull_request ]
jobs:
check-style:
name: Check code style with Black
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Check code style
uses: psf/black@stable
with:
options: "--check --verbose"
src: "./src"