From 472ff82875bf1a9668b394c5d59f7e0123e62b1a Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Mon, 16 Sep 2019 00:02:57 -0400 Subject: [PATCH] Update and rename pythonapp.yml to tests.yml --- .github/workflows/tests.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/tests.yml diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml new file mode 100644 index 0000000..ad8f7d1 --- /dev/null +++ b/.github/workflows/tests.yml @@ -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