Fix typos #602
Workflow file for this run
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
# This configuration file is part of the Hissp source code repository, | |
# copyright 2019, 2021, 2022 Matthew Egan Odendahl | |
# SPDX-License-Identifier: Apache-2.0 | |
name: Test package | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Lint with black | |
uses: psf/black@stable | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.8 | |
- name: Cache pip | |
uses: actions/cache@v1 | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pip-${{ hashFiles('requirements-dev.txt') }} | |
restore-keys: | | |
${{ runner.os }}-pip- | |
- name: Lint with flake8 | |
run: | | |
pip install flake8 | |
# stop the build if there are Python syntax errors or undefined names | |
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics | |
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide | |
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics | |
- name: Install Node.js | |
uses: actions/setup-node@v1 | |
- name: Lint with parlinter | |
run: | | |
npm install -g parlinter | |
parlinter --trim --write "**/*.lissp" | |
git diff | |
git reset --hard | |
parlinter --list-different "**/*.lissp" | |
- name: Create Hissp package | |
run: | | |
pip install setuptools wheel | |
python setup.py bdist_wheel | |
- name: Install Hissp package from dist/ | |
run: | | |
pip install setup/dist/hissp-*.whl | |
- name: Install test dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements-dev.txt | |
- name: Test install with pytest (including doctests) | |
env: | |
PYTHONWARNINGS: error | |
run: | | |
python -c "import tests" # Compiles hissp.basic on package import. | |
pytest -p no:cacheprovider -v --cov=hissp --cov-report=xml --doctest-modules --doctest-glob *.md src/hissp/*.lissp tests/ docs/ $(python -c "import hissp; print(hissp.__path__[0])") | |
- name: Codecov | |
uses: codecov/[email protected] | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} |