Skip to content

➖ removed /wiki from routes; ➕ added activity badges to README #15

➖ removed /wiki from routes; ➕ added activity badges to README

➖ removed /wiki from routes; ➕ added activity badges to README #15

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"