Skip to content

Commit

Permalink
add CI configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
FriedrichFroebel authored Aug 13, 2023
1 parent 99beac7 commit f250bdd
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
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-dev'
runs-on: ubuntu-latest
name: Python ${{ matrix.python }}
steps:
- uses: actions/checkout@v3
- name: set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: apt update
run:
sudo apt-get update
- 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/

0 comments on commit f250bdd

Please sign in to comment.