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