This is an automated email from the ASF dual-hosted git repository.
liurenjie1024 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iceberg-rust.git
The following commit(s) were added to refs/heads/main by this push:
new 484ef05 feat: Add macos runner for ci (#441)
484ef05 is described below
commit 484ef05d39d81d78cc447393b7e9879de4769ee2
Author: ErXi <[email protected]>
AuthorDate: Wed Jul 10 22:16:12 2024 +0800
feat: Add macos runner for ci (#441)
* feat: Add macos runner for ci
* feat: Add publish for macOS
* reset the publish.yml
* feat: add macOS for check ci
* remove the macOS for unit ci
---
.github/workflows/ci.yml | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index f98f5e7..d155b29 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -34,7 +34,12 @@ env:
jobs:
check:
- runs-on: ubuntu-latest
+ runs-on: ${{ matrix.os }}
+ strategy:
+ matrix:
+ os:
+ - ubuntu-latest
+ - macos-latest
steps:
- uses: actions/checkout@v4