Prepare release of 1.4.0 #73
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
# Install package via pip and run tests | |
name: Tests | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
pytest: | |
strategy: | |
fail-fast: false | |
matrix: | |
python_version: ["3.8", "3.9", "3.10", "3.11", "3.12"] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python_version }} | |
- name: Install doxygen | |
run: | | |
sudo apt-get install -y doxygen | |
- name: Install latest pip and wheel | |
run: | | |
python -m pip install --upgrade pip wheel | |
- name: Install package | |
run: | | |
python -m pip install ".[test]" | |
- name: Run tests | |
run: | | |
python -m pytest tests/ |