Skip to content

updated examples directory #251

updated examples directory

updated examples directory #251

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build-and-test:
name: install
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.7
uses: actions/setup-python@v2
with:
python-version: 3.7
architecture: x64
- name: Install dependencies
run: python -m pip install -r requirements.txt
- name: Install pyross
run: python setup.py install
- name: Test pyross
run: cd tests && python quick_test.py