add coveralls step to ci #26
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: | |
pull_request: | |
push: | |
branches: | |
- main | |
release: | |
env: | |
default-python: "3.12" | |
minimum-supported-python: "3.9" | |
jobs: | |
run-tests: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.9", "3.10", "3.11", "3.12"] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: make init | |
- name: Run lint | |
run: make lint | |
- name: Run typecheck | |
run: make typecheck | |
- name: Run tests | |
run: make test | |
- name: Run coverage | |
run: coverage lcov | |
- name: Upload coverage | |
uses: coverallsapp/github-action@v2 |