From beecea52e48a6de3cf8732a8e5bc37f622717dc1 Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Thu, 20 May 2021 16:13:10 -0400 Subject: [PATCH] Run py3.9 and tests in CI --- .github/workflows/ci.yml | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fa7b7c6a..0a66bd22 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,15 +7,22 @@ jobs: name: 'pip install' runs-on: ubuntu-latest steps: + - name: Checkout uses: actions/checkout@v2 with: - ref: chart_hacking + ref: master + - name: Setup python uses: actions/setup-python@v2 with: - python-version: '3.8' + python-version: '3.9' + - name: Install dependencies run: pip install -e . --upgrade-strategy eager -r requirements.txt - - name: Run piker + + - name: Run piker cli run: piker + + - name: Run test suite + run: pytest tests