From d206b36049a66e2da34a45464ae677188d30b921 Mon Sep 17 00:00:00 2001 From: wbond Date: Sat, 14 Sep 2019 12:11:02 -0400 Subject: [PATCH] Run CI on GitHub Actions also --- .github/workflows/ci.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..0704560 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,23 @@ +name: CI +on: [push] + +jobs: + build: + name: Python ${{ matrix.python }} on ${{ matrix.os }} + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: + - ubuntu-18.04 + - macOS-10.14 + - windows-2019 + python: + - '2.7' + - '3.7' + steps: + - uses: actions/checkout@master + - uses: actions/setup-python@v1 + with: + python-version: ${{ matrix.python }} + - run: python run.py deps + - run: python run.py ci