first pass at the templates

This commit is contained in:
Andy McKay
2019-07-29 09:38:23 -07:00
parent b67cc8228e
commit 4d7a741e07
71 changed files with 717 additions and 2 deletions
+31
View File
@@ -0,0 +1,31 @@
on: [push]
name: Python package
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [2.7, 3.5, 3.6, 3.7]
steps:
- uses: actions/checkout@master
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@master
with:
version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Test with pytest
run: |
pip install pytest
pytest