Skip to content

Fix typo in workflow #110

Fix typo in workflow

Fix typo in workflow #110

Workflow file for this run

name: test
on:
push:
branches: [ "dev" ]
pull_request:
branches: [ "dev" ]
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
env:
DANDI_API_KEY: ${{ secrets.DANDI_API_KEY }}
steps:
- uses: actions/checkout@v3
- name: Upgrading pip
run: pip install --upgrade pip
- name: print environment
run: pip freeze
- name: Installing requirements
run: pip install -r ./requirements.txt --user
- name: Installing build dependencies
run: |
pip install markupsafe==2.0.1
pip install jupyter
pip install -U jupyter-book
pip install nbmake
- name: Getting changed files
id: changed_files
uses: Ana06/get-changed-files@v2.2.0
with:
filter: "*.ipynb"
- name: Testing notebooks
if: ${{ steps.changed_files.outputs.added_modified != "" }}

Check failure on line 43 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / test

Invalid workflow file

The workflow is not valid. .github/workflows/test.yml (Line: 43, Col: 13): Unexpected symbol: '""'. Located at position 48 within expression: steps.changed_files.outputs.added_modified != ""
run: pytest --nbmake --nbmake-timeout=5000 ${{ steps.changed_files.outputs.added_modified }}