Skip to content

Add JOSS paper link

Add JOSS paper link #8

Workflow file for this run

name: Test Code
on:
push:
branches: [ "master", "shakedzy:master" ]
paths-ignore:
- "README.md"
- "CHANGELOG.md"
- "CODE_OF_CONDUCT.md"
- "CONTRIBUTING.md"
- "VERSION"
- "LICENSE"
- ".gitignore"
- "docs/*"
pull_request:
types: [opened, reopened, edited, synchronize]
branches: [ "master", "shakedzy:master" ]
paths-ignore:
- "README.md"
- "CHANGELOG.md"
- "CODE_OF_CONDUCT.md"
- "CONTRIBUTING.md"
- "VERSION"
- "LICENSE"
- ".gitignore"
- "docs/*"
permissions:
contents: read
jobs:
test:
strategy:
matrix:
version: ["3.10", "3.14"]
platform: ["ubuntu-latest", "macos-latest", "windows-latest"]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.version }} on ${{ matrix.platform }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r dev_requirements.txt
pip install .
- name: Test with pytest
run: pytest