From 061a049a7f200485d2f1609476618df727b102a0 Mon Sep 17 00:00:00 2001 From: Alan Briolat Date: Sun, 27 Oct 2019 08:22:09 +0000 Subject: [PATCH] Trying to get GitHub Actions CI working --- .github/workflows/main.yml | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index b2340b24..5dda989d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -5,13 +5,11 @@ on: [push] jobs: build: - runs-on: ubuntu-latest + runs-on: ubuntu-18.04 steps: - uses: actions/checkout@v1 - - name: Run a one-line script - run: echo Hello, world! - - name: Run a multi-line script - run: | - echo Add other actions to build, - echo test, and deploy your project. + - name: Install tox + run: pip install tox + - name: Run tests with tox + run: tox