From 8ceba7974f024d7ae8fc2759ddf4e8064900fed7 Mon Sep 17 00:00:00 2001 From: Mieszko Date: Wed, 3 Aug 2022 00:25:23 +0200 Subject: [PATCH] add mac --- .github/workflows/pythonpackage.yml | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml index f201a70..b5e4790 100644 --- a/.github/workflows/pythonpackage.yml +++ b/.github/workflows/pythonpackage.yml @@ -11,10 +11,16 @@ on: jobs: build: - runs-on: windows-latest + runs-on: ${{ matrix.os }} strategy: matrix: - python-version: [3.7] + os: [macOS-latest, windows-latest] + include: # match Python bitness shipped with Galaxy + - os: macOS-latest + arch: x64 + - os: windows-latest + arch: x86 + steps: - name: Checkout code uses: actions/checkout@v2 @@ -28,11 +34,9 @@ jobs: - name: Build plugin uses: GOG-Nebula/action-build-plugin@feat/simple_composite_action with: - python-arch: 'x86' + python-arch: ${{ matrix.arch }} - - name: Show build dir - run: | - ls + - run: ls - name: Create zip archive shell: bash