Kontinuation commented on PR #50:
URL: https://github.com/apache/sedona-db/pull/50#issuecomment-3277195959
Can we add a plain `cargo build` to our GitHub Workflow to catch this issue?
```diff
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml
index 1c57218..1c6bd19 100644
--- a/.github/workflows/rust.yml
+++ b/.github/workflows/rust.yml
@@ -49,7 +49,7 @@ jobs:
rust:
strategy:
matrix:
- name: ["clippy", "docs", "test"]
+ name: ["clippy", "build", "docs", "test"]
name: "${{ matrix.name }}"
runs-on: ubuntu-latest
@@ -117,6 +117,11 @@ jobs:
run: |
cargo clippy --workspace --all-targets --all-features --
-Dwarnings
+ - name: Build
+ if: matrix.name == 'build'
+ run: |
+ cargo build --workspace --all-targets --all-features
+
- name: Test
if: matrix.name == 'test'
run: |
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]