Skip to content

Commit

Permalink
Create test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
shMeske authored Oct 19, 2023
1 parent 55fcf25 commit b69226c
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Test

on:
push:
branches: [ development ]
pull_request:
branches: [ development ]

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]

steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
pip install poethepoet
poetry config virtualenvs.in-project true
poetry install -E mne -E jupyter
- name: Testing
if: ${{ matrix.python-version == '3.10' }}
run: |
poetry run poe test

0 comments on commit b69226c

Please sign in to comment.