mirror of
https://github.com/pimoroni/st7735-python.git
synced 2025-01-05 22:40:25 +03:00
37 lines
580 B
YAML
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
|