Skip to content

Fix two wrong characters in ST7066 0B charmap (#142) #24

Fix two wrong characters in ST7066 0B charmap (#142)

Fix two wrong characters in ST7066 0B charmap (#142) #24

Workflow file for this run

on:
push:
branches:
- master
pull_request:
name: CI
jobs:
test:
runs-on: ubuntu-24.04
strategy:
matrix:
deps:
- { python: '3.8' }
- { python: '3.9' }
- { python: '3.10' }
- { python: '3.11' }
- { python: '3.12' }
fail-fast: false
name: Python ${{ matrix.deps.python }}
steps:
- uses: actions/checkout@v3
- name: Setup python ${{ matrix.deps.python }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.deps.python }}
- name: Upgrade pip
run: pip install -U pip
- name: Install dev dependencies
run: pip install -r requirements-dev.txt
- name: Run tests
run: pytest
format:
runs-on: ubuntu-24.04
name: Check code formatting with black
steps:
- uses: actions/checkout@v3
- name: Setup python
uses: actions/setup-python@v4
with:
python-version: 3.12
- name: Install black
run: pip install black~=25.1
- name: Check code formatting
run: black --check .