Added type hints #72
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
name: Tests | |
strategy: | |
matrix: | |
python-version: | |
- "3.8" | |
- "3.9" | |
- "3.10" | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Dependencies | |
run: sudo apt install libxml2-dev libxslt-dev | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v1 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Dependencies | |
run: python -m pip install -U pip wheel coverage codecov pytest | |
- name: Install Dependencies | |
run: python setup.py develop | |
- name: Run tests | |
run: coverage run -m pytest tests | |
- name: Upload coverage | |
run: codecov | |
style: | |
runs-on: ubuntu-latest | |
name: Style | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Dependencies | |
run: sudo apt install libxml2-dev libxslt-dev | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v1 | |
with: | |
python-version: "3.10" | |
- name: Install Dependencies | |
run: python -m pip install -U pip wheel black isort pytest | |
- name: Install Dependencies | |
run: python setup.py develop | |
- name: Run black | |
run: black --check . |