From a553e5018d934e4abb597175bb643950802625c4 Mon Sep 17 00:00:00 2001 From: Eric Froemling Date: Sun, 6 Oct 2019 05:10:55 -0700 Subject: [PATCH] more CI testing --- .github/workflows/ci.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 67d1944c..2533c8e7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,15 +5,16 @@ on: [push] jobs: build: - runs-on: ubuntu-latest + runs-on: ubuntu-18.04 steps: - uses: actions/checkout@v1 - name: Setup run: | - sudo apt install pylint3 + export DEBIAN_FRONTEND=noninteractive + sudo apt-add-repository -y ppa:deadsnakes/ppa + sudo apt-get -y install python3.7 python3.7-dev python3-pip - name: Run a multi-line script run: | echo Add other actions to build, - python3 -m pylint --version echo test, and deploy your project.