From 333828dfa4c0f32fe50ba98f093bf5bb7c2c48f4 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Mon, 16 Sep 2019 08:34:06 -0400 Subject: [PATCH] ubuntu-latest --- .github/workflows/tests.yml | 27 +++++++++++++-------------- 1 file changed, 13 insertions(+), 14 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index ad8f7d1..3dda468 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -4,19 +4,18 @@ on: [push] jobs: build: - - runs-on: heroku/heroku:18 + runs-on: ubuntu-latest 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 + - 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