Skip to content

Create CITATION.cff for project citation #7

Create CITATION.cff for project citation

Create CITATION.cff for project citation #7

Workflow file for this run

name: Tests
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install package and dependencies
run: |
python -m pip install --upgrade pip
pip install -e .
pip install pytest
- name: Run smoke tests
run: |
pytest tests/test_smoke.py -v