forked from pklaus/brother_ql_web
-
Notifications
You must be signed in to change notification settings - Fork 5
53 lines (51 loc) · 1.17 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
name: CI
on:
- push
- pull_request
- workflow_dispatch
jobs:
main:
strategy:
matrix:
include:
- python: 3.8
- python: 3.9
- python: '3.10'
- python: '3.11'
- python: '3.12'
runs-on: ubuntu-latest
name: Python ${{ matrix.python }}
steps:
- uses: actions/checkout@v4
- name: set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: apt update
run:
sudo apt-get update
- name: install APT dependencies
run:
sudo apt-get install fonts-roboto
- name: update PIP
run:
python -m pip install --upgrade pip
- name: install wheel
run:
python -m pip install --upgrade wheel
- name: install package
run: |
python -m pip install .[dev,mypy]
- name: run tests
run:
python -m unittest discover --verbose --start-directory tests
- name: run flake8
run:
python -m flake8 .
- name: run black
run:
black --check --diff .
- name: run mypy
run:
mypy brother_ql_web/ tests/
if: ${{ matrix.python != '3.8' }}