Add inspection effectiveness #183
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Example Scripts | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
test-scripts: | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
python-version: | |
- "3.9" | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install | |
run: | | |
python -m pip install --upgrade pip | |
pip install . | |
- name: Run Bash example scripts | |
run: | | |
cd examples/bash | |
./bash_examples.sh | |
./generate_synthetic_F280_dataset.sh test.csv 100 | |
- name: Run Python example scripts | |
run: | | |
cd examples/python | |
./scenarios.py |