From 0e90d78efc84b5062ee9cceea6ac334e7b8a7e4e Mon Sep 17 00:00:00 2001 From: Eric Froemling Date: Thu, 26 Mar 2020 19:05:26 -0700 Subject: [PATCH] action test --- .github/workflows/ci.yml | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bebf586f..99529eed 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,17 +8,8 @@ on: - cron: '0 12 * * *' jobs: + ci_unix: - runs-on: ubuntu-18.04 - steps: - - uses: actions/checkout@v1 - - name: Install dependencies - run: | - sudo apt-get -y install python3.7 python3.7-dev python3-pip python3-setuptools - tools/snippets install_pip_reqs - - name: Run checks and tests - run: echo make -j2 check test - ci_unix2: runs-on: ubuntu-18.04 steps: - uses: actions/checkout@v1 @@ -30,6 +21,7 @@ jobs: run: tools/snippets install_pip_reqs - name: Run checks and tests run: make -j2 check test + ci_windows: runs-on: windows-latest steps: @@ -42,6 +34,6 @@ jobs: run: | python -m pip install --upgrade pip pip install pytest - - name: Display Python version - run: make + - name: Run tests + run: python tools/snippets pytest -v tests