Skip to content

ICD 1.0 Corner Cases #248

ICD 1.0 Corner Cases

ICD 1.0 Corner Cases #248

# This workflow will install Python dependencies, run tests and lint.
name: ICD 1.0 Corner Cases
on:
schedule:
- cron: '20 4 * * *'
push:
branches: [ master, general-dev ]
paths-ignore:
- '**.md'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.11']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install flake8 pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: ICD Test Corner Cases with pytest
run: |
pytest tests/test_corner_cases.py