Skip to content

Commit

Permalink
[ADD] CI for unittests
Browse files Browse the repository at this point in the history
  • Loading branch information
remiadon committed Feb 8, 2021
1 parent 20eb527 commit 1af7fb9
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/on_PR.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: tests
on: [pull_request]
jobs:
run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Setup Python
uses: actions/setup-python@master
with:
python-version: 3.7
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
pip install -r requirements.txt
- name: Unit tests
run: pytest bids_prov

0 comments on commit 1af7fb9

Please sign in to comment.