From 4f92b53c7cb0b687491fb23f64558622f08034e9 Mon Sep 17 00:00:00 2001 From: Eric Froemling Date: Fri, 13 Dec 2019 17:38:24 -0800 Subject: [PATCH] added tests to ci --- .github/workflows/ci.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 16705d8e..c13baa12 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,20 +4,18 @@ on: # Run on pushes and also once per day (in case deps change under us) push: schedule: - # Note: * is a special character in YAML so we have to quote the str. + # Note: '*' is a special character in YAML so we have to quote the str. - cron: '0 4 * * *' jobs: check: - runs-on: ubuntu-18.04 - steps: - uses: actions/checkout@v1 - name: Set up tools run: | sudo apt-get -y install python3.7 python3.7-dev python3-pip python3-setuptools python3.7 -m pip install `tools/snippets pip_req_list` - - name: Run checks - run: make checkfull + - name: Run checks and tests + run: make -j2 checkfull test