From ea8ce4f61fb1d15ebb91e7f136767444c44ccc80 Mon Sep 17 00:00:00 2001 From: Ben Smith Date: Wed, 8 Jan 2020 19:33:40 -0800 Subject: run-tests.py works properly with python3 (#1285) Fixes #1180 and #1181. --- .github/workflows/build.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to '.github') diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index beb18a3f..7fa4b55d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,10 +9,16 @@ jobs: strategy: matrix: os: [ubuntu-16.04, macos-latest, windows-latest] + python: [2.7, '3.x'] + exclude: + - os: macos-latest + python: '3.x' + - os: windows-latest + python: '3.x' steps: - uses: actions/setup-python@v1 with: - python-version: '2.7' + python-version: ${{ matrix.python }} - uses: actions/checkout@v1 with: submodules: true -- cgit v1.2.3