Files
st7735-python-pimoroni/.github/workflows/qa.yml
Phil Howard f6599b1854 Repackage to latest Python boilerplate.
Deprecate "ST7735" and rename module to "st7735".
2023-11-03 13:42:34 +00:00

37 lines
580 B
YAML

name: QA
on:
pull_request:
push:
branches:
- main
jobs:
test:
name: linting & spelling
runs-on: ubuntu-latest
env:
TERM: xterm-256color
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Set up Python '3,11'
uses: actions/setup-python@v3
with:
python-version: '3.11'
- name: Install Dependencies
run: |
make dev-deps
- name: Run Quality Assurance
run: |
make qa
- name: Run Code Checks
run: |
make check