Skip to content

Updated the spect tests to run with 8.4.0 instead o 8.3.0 #18

Updated the spect tests to run with 8.4.0 instead o 8.3.0

Updated the spect tests to run with 8.4.0 instead o 8.3.0 #18

Workflow file for this run

name: CI Windows
on:
push:
branches: ["main", "master"]
pull_request:
branches: ["main", "master"]
jobs:
build:
strategy:
matrix:
platform: [windows-latest]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13""]

Check failure on line 14 in .github/workflows/ci_windows.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci_windows.yaml

Invalid workflow file

You have an error in your yaml syntax on line 14
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
with:
submodules: false
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- uses: actions/cache@v4
with:
path: ${{ env.pythonLocation }}
key: ${{ env.pythonLocation }}-${{ hashFiles('setup.py') }}-${{ hashFiles('docs/requirements.txt') }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Test with unittest
env:
HED_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
python -m unittest