Skip to content

enabling Grove - 16x2 LCD (JHD1804) #12

enabling Grove - 16x2 LCD (JHD1804)

enabling Grove - 16x2 LCD (JHD1804) #12

Workflow file for this run

on:
push:
branches:
- master
pull_request:
name: CI
jobs:
test:
runs-on: ubuntu-22.04
strategy:
matrix:
deps:
- { python: '3.7' }
- { python: '3.8' }
- { python: '3.9' }
- { python: '3.10' }
- { python: '3.11' }
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