Skip to content

updated version number to match new release #16

updated version number to match new release

updated version number to match new release #16

Workflow file for this run

name: Unittest
on:
push:
branches:
- main
paths:
- 'selfeeg/**'
- 'test/**'
- '.github/workflows/python-app.yml'
pull_request:
paths:
- 'selfeeg/**'
- 'test/**'
- '.github/workflows/python-app.yml'
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
selfeegtest:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.10", "3.11"]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/cpu
pip install -r requirements.txt
- name: Test with unittest
run: python -m unittest discover test "*_test.py"