Skip to content

Support up to Unicode 15.1 in fallback implementation (fixes #17) #105

Support up to Unicode 15.1 in fallback implementation (fixes #17)

Support up to Unicode 15.1 in fallback implementation (fixes #17) #105

Workflow file for this run

name: Linters
on:
push:
pull_request:
jobs:
black:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install black
- name: Check with black
run: black --check .
codespell:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: codespell-project/actions-codespell@master
with:
skip: '_impl.c'