Skip to content

Refs #265. Initial attempt at using GH actions for tests #1

Refs #265. Initial attempt at using GH actions for tests

Refs #265. Initial attempt at using GH actions for tests #1

Workflow file for this run

name: CI
on:
push:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [2.7, 3.6, 3.7]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install --requirement requirements/testing.txt
- name: Run tests
run: nosetests --with-doctest []