Skip to content

Merge pull request #5 from Wcsa23187/add_new #28

Merge pull request #5 from Wcsa23187/add_new

Merge pull request #5 from Wcsa23187/add_new #28

Workflow file for this run

name: demo
on:
push:
branches:
- main
paths-ignore:
- "**/*.md"
- "**/*.zip"
- "**/*.csv"
pull_request:
branches:
- main
paths-ignore:
- "**/*.md"
- "**/*.zip"
- "**/*.csv"
jobs:
demo:
name: Demos on ${{ matrix.os }} for ${{ matrix.python-version }}
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
timeout-minutes: 10
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 dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Build and Test
run: |
bash tests/tools/run_demos.sh