Skip to content

updated requirements theme pointer #11

updated requirements theme pointer

updated requirements theme pointer #11

Workflow file for this run

name: GPSeer tests
on:
push:
branches:
- master
pull_request:
branches: '*'
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [ '3.6', '3.7', '3.8' ]
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Install Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
architecture: 'x64'
- name: Install the Python dependencies
run: |
pip install numpy
pip install .
pip install -e .[test]
- name: Run the tests
run: |
pytest