Skip to content

Release 0.5.0

Release 0.5.0 #65

Workflow file for this run

name: Checks
on:
push:
branches:
- 'master'
pull_request:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12-dev']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Test
run: |
pip install --upgrade pip
pip install --upgrade setuptools
pip install -r requirements-dev.txt
python setup.py test
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- name: Unit tests for coverage
run: |
pip install --upgrade pip
pip install --upgrade setuptools
pip install -r requirements-dev.txt
python setup.py develop
coverage run -m unittest discover tests
- name: Coveralls
uses: AndreMiras/coveralls-python-action@develop
with:
parallel: true
flag-name: Unit Test
- name: Lint with flake8
run: |
pip install flake8
python -m flake8 ./janome
- name: Lint with mypy
run: |
pip install mypy
python -m mypy ./janome/*.py
coveralls_finish:
needs: check
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
uses: AndreMiras/coveralls-python-action@develop
with:
parallel-finished: true