Update and rename pythonapp.yml to tests.yml

This commit is contained in:
2019-09-16 00:02:57 -04:00
committed by GitHub
parent 144057f6b0
commit 472ff82875
+22
View File
@@ -0,0 +1,22 @@
name: Bake CI™
on: [push]
jobs:
build:
runs-on: heroku/heroku:18
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.7
uses: actions/setup-python@v1
with:
python-version: 3.7
- name: Install dependencies
run: |
python -m pip install --upgrade pip pipenv
pipenv install --system --dev
- name: Test with pytest
run: |
pytest