Add python 3.13 to tests #118
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: Automated Tests | |
on: | |
push: | |
branches: | |
- '**' # matches every branch | |
- '!gh-pages' # excludes gh-pages | |
pull_request: | |
branches: | |
- '**' # matches every branch | |
- '!gh-pages' # excludes gh-pages | |
permissions: | |
contents: read | |
jobs: | |
build: | |
# runs-on: ubuntu-latest | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
python-version: ["3.10", "3.11", "3.12", "3.13"] | |
numpy-version: ["1.23", "1.25", "1.26", "2.0.0", "2.1.0"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{matrix.python-version}} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install setuptools | |
pip install numpy==${{ matrix.numpy-version }} | |
pip install flake8 pytest | |
if [ -f requirements_tests.txt ]; then pip install -r requirements_tests.txt; fi | |
- name: Build package | |
run: python -m build --wheel | |
- name: Install Package | |
run: pip install dist/* | |
- name: Run tests with pytest | |
run: pytest tests | |