Skip to content

Fix typecheck

Fix typecheck #67

Workflow file for this run

name: ci
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, "3.10", "3.11"]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Use Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install requirements
run: pip install -r requirements.txt
- name: Lint and type check
run: make lint typecheck
- name: Coverage
run: make coverage
- name: CLI test
run: ./test/cli_example.sh
- name: Coveralls
if: matrix.python-version == '3.11'
run: coveralls --service=github
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}