From c976cc5949575a90bc6d12d96006e55fc20f2fb9 Mon Sep 17 00:00:00 2001 From: Milan Kolar Date: Mon, 5 Apr 2021 22:51:03 +0200 Subject: [PATCH] add macos build test --- .github/workflows/test_build.yml | 32 +++++++++++++++++++++++++++----- 1 file changed, 27 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test_build.yml b/.github/workflows/test_build.yml index 69aa0bcc02..af605a10ca 100644 --- a/.github/workflows/test_build.yml +++ b/.github/workflows/test_build.yml @@ -16,17 +16,18 @@ jobs: python-version: [3.7] steps: - - uses: actions/checkout@v2 + - name: ๐Ÿš› Checkout Code + uses: actions/checkout@v2 - name: Set up Python uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} - - name: Install Venv + - name: ๐Ÿงต Install Requirements shell: pwsh run: | ./tools/create_env.ps1 - - name: Build + - name: ๐Ÿ”จ Build shell: pwsh run: | ./tools/build.ps1 @@ -44,10 +45,31 @@ jobs: uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} - - name: Install Venv + - name: ๐Ÿงต Install Requirements run: | ./tools/create_env.sh - - name: Build + - name: ๐Ÿ”จ Build + run: | + ./tools/build.sh + + MacOS-latest: + + runs-on: macos-latest + strategy: + matrix: + python-version: [3.7] + + steps: + - uses: actions/checkout@v2 + - name: Set up Python + uses: actions/setup-python@v2 + with: + python-version: ${{ matrix.python-version }} + - name: ๐Ÿงต Install Requirements + run: | + ./tools/create_env.sh + + - name: ๐Ÿ”จ Build run: | ./tools/build.sh \ No newline at end of file