Skip to content

Merge pull request #9 from neurostuff/rename #43

Merge pull request #9 from neurostuff/rename

Merge pull request #9 from neurostuff/rename #43

Workflow file for this run

name: Install and Test
on:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: testing-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.8'
- name: Install dependencies
run: pip install .[tests]
- name: Test with pytest
run: pytest