Skip to content

Feat unicode blocks

Feat unicode blocks #2

Workflow file for this run

name: Run CI
on:
push:
pull_request:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.8"
- name: Install dev requirements
run: make dev
- name: Linter and formatting
run: make lint
- name: Run tests
run: make test