docs: use the always resolved link to zenodo #50
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: Build | |
on: | |
- push | |
- workflow_dispatch | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.8" | |
- uses: pre-commit/action@v3.0.0 | |
- name: mypy | |
uses: jpetrucciani/mypy-check@master | |
with: | |
path: './qutree' | |
requirements: "." | |
mypy_flags: | | |
--config-file ./pyproject.toml | |
--scripts-are-modules | |
--ignore-missing-imports | |
--install-types | |
--non-interactive | |
--disable-error-code func-returns-value | |
--warn-redundant-casts | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.7", "3.8", "3.9", "3.10"] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: pip install .[test] | |
- name: test with pytest | |
run: pytest --color=yes --cov --cov-report=xml tests | |
- name: codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
verbose: true |