Skip to content

Commit 16fc94d

Browse files
committed
exclude ruby - workflows complain aint no header
add --workspace
1 parent f252bb2 commit 16fc94d

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/ruby.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,4 +137,4 @@ jobs:
137137
run: cargo fmt --check
138138

139139
- name: Cargo clippy
140-
run: cargo clippy -- -D warnings
140+
run: cargo clippy --features extension-module -- -D warnings

.github/workflows/rust.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,19 +58,19 @@ jobs:
5858
env:
5959
SCCACHE_GHA_ENABLED: "true"
6060
RUSTC_WRAPPER: "sccache"
61-
run: cargo build --verbose --locked --all-features
61+
run: cargo build --workspace --verbose --locked --all-features --exclude turso-ruby
6262
- name: Test (nextest)
6363
env:
6464
RUST_LOG: ${{ runner.debug && 'turso_core::storage=trace' || '' }}
6565
SCCACHE_GHA_ENABLED: "true"
6666
RUSTC_WRAPPER: "sccache"
67-
run: cargo nextest run --workspace --all-features --locked --no-fail-fast -E 'not test(/^fuzz_tests::/)'
67+
run: cargo nextest run --workspace --all-features --locked --no-fail-fast --exclude turso-ruby -E 'not test(/^fuzz_tests::/)'
6868
timeout-minutes: 20
6969
- name: Test doctests
7070
env:
7171
SCCACHE_GHA_ENABLED: "true"
7272
RUSTC_WRAPPER: "sccache"
73-
run: cargo test --workspace --all-features --doc --locked
73+
run: cargo test --workspace --all-features --doc --locked --exclude turso-ruby
7474

7575
clippy:
7676
runs-on: blacksmith-4vcpu-ubuntu-2404
@@ -86,7 +86,7 @@ jobs:
8686
cache-on-failure: true
8787
- name: Clippy
8888
run: |
89-
cargo clippy --workspace --all-features --all-targets --locked -- --deny=warnings
89+
cargo clippy --workspace --all-features --all-targets --exclude turso-ruby --locked -- --deny=warnings
9090
9191
simulator:
9292
runs-on: blacksmith-4vcpu-ubuntu-2404

0 commit comments

Comments
 (0)