Skip to content

Add pre-commit manifest to simplify installing the pre-commit hook (Issue #7) #39

Add pre-commit manifest to simplify installing the pre-commit hook (Issue #7)

Add pre-commit manifest to simplify installing the pre-commit hook (Issue #7) #39

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- '2.7'
- '3.7'
- '3.8'
- '3.9'
- '3.10'
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: python -m pip install -e .[test]
- name: Check code style
run: python -m pycodestyle
- name: Check test coverage
run: python -m pytest