diff options
author | Ben Smith <binji@chromium.org> | 2020-01-08 19:33:40 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-08 19:33:40 -0800 |
commit | ea8ce4f61fb1d15ebb91e7f136767444c44ccc80 (patch) | |
tree | c72fc74a9d839871465e4d4a6c5dd4a753d4d67c /.github | |
parent | 168ba9100b8168782668462f87540dfea16be26d (diff) | |
download | wabt-ea8ce4f61fb1d15ebb91e7f136767444c44ccc80.tar.gz wabt-ea8ce4f61fb1d15ebb91e7f136767444c44ccc80.tar.bz2 wabt-ea8ce4f61fb1d15ebb91e7f136767444c44ccc80.zip |
run-tests.py works properly with python3 (#1285)
Fixes #1180 and #1181.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml | 8 |
1 files changed, 7 insertions, 1 deletions
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 |