Skip to content

Update run_examples.yml #5

Update run_examples.yml

Update run_examples.yml #5

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Run examlpes
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:

Check failure on line 18 in .github/workflows/run_examples.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/run_examples.yml

Invalid workflow file

You have an error in your yaml syntax on line 18
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
python -m pip install numpy flake8 pycodestyle pytest nbval pandas minisom
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Unit testing
run: |
pytest --nbval examples/BasicUsage.ipynb