Skip to content

Inherit TODs from base sim #132

Inherit TODs from base sim

Inherit TODs from base sim #132

Workflow file for this run

name: Unit Tests
on:
push:
pull_request:
schedule:
- cron: '00 12 * * *' # daily at 4AM
jobs:
run_tests:
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.repository
runs-on: ubuntu-latest
strategy:
python-version: "3.10"

Check failure on line 14 in .github/workflows/testing.yml

View workflow run for this annotation

GitHub Actions / Unit Tests

Invalid workflow file

The workflow is not valid. .github/workflows/testing.yml (Line: 14, Col: 7): Unexpected value 'python-version'
fail-fast: false
defaults:
run:
shell: bash -l {0}
steps:
- name: Checkout the code
uses: actions/checkout@v3
- name: Install dependencies with pip
run: |
pip install .
pip install -r requirements-dev.txt
pip list
- name: Test the code
run: |
set -vxuo pipefail
pytest -s -vv -m atmosphere