Skip to content

minor

minor #153

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build-and-test:
name: ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: [3.7]
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.7
uses: actions/setup-python@v2
with:
python-version: 3.7
architecture: x64
- name: Print version
run: python -c "import sys; print(sys.version)"
- name: Install dependencies
run: python -m pip install -r requirements.txt
- name: Install pystokes
run: python setup.py install
- name: Test pystokes
run: cd tests && python test_short.py