Skip to content

Merge pull request #7 from brian-team/dependabot/github_actions/actio… #142

Merge pull request #7 from brian-team/dependabot/github_actions/actio…

Merge pull request #7 from brian-team/dependabot/github_actions/actio… #142

name: Python package
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[test]
- name: Run tests
run: |
pytest --doctest-modules