From b0eceb5787f6905d1d6aac86438abdf8148affec Mon Sep 17 00:00:00 2001 From: Max Willsey Date: Wed, 3 Nov 2021 15:09:25 -0700 Subject: [PATCH] Try more CI stuff --- .github/workflows/build.yml | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3f20823..ae6d8d7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,19 +18,22 @@ jobs: - name: Test run: make test - linux: - runs-on: ubuntu-latest + build-wheel: + strategy: + matrix: + os: [ubuntu-latest, macos-latest] + runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2 - uses: actions/setup-python@v2 with: python-version: 3.6 architecture: x64 - - name: Install Rust toolchain - uses: actions-rs/toolchain@v1 - with: - toolchain: stable - profile: minimal + # - name: Install Rust toolchain + # uses: actions-rs/toolchain@v1 + # with: + # toolchain: stable + # profile: minimal - name: Build Wheels uses: messense/maturin-action@v1 with: