Skip to content

Time dependent NBI CX #670

Time dependent NBI CX

Time dependent NBI CX #670

Workflow file for this run

name: Testing
on:
push:
branches: [ master ]
pull_request:
jobs:
build:
if: "!contains(github.event.head_commit.message, '[ci skip]') && !contains(github.event.head_commit.message, '[skip ci]') && !contains(github.event.head_commit.message, '[skip github]')"
runs-on: ubuntu-latest
strategy:
matrix:
build_command: [
"pip install .",
"pip install --editable .",
]
fail-fast: false
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:

Check failure on line 24 in .github/workflows/tests.yml

View workflow run for this annotation

GitHub Actions / Testing

Invalid workflow file

The workflow is not valid. .github/workflows/tests.yml (Line: 24, Col: 12): Unexpected value ''
- name: Install Aurora
run: ${{ matrix.build_command }}
- name: Move to root and try importing Aurora
run: |
cd /
python -c "import aurora; print(aurora.__version__)"
- name: Run test_basic.py
run: |
python examples/test_basic.py
# - name: Test with pytest and coverage
# run: |
# pip install pytest
# pip install pytest-cov
# pytest --junitxml=junit/test-results.xml --cov=aurora --cov-report=xml --cov-report=html