Skip to content

Commit

Permalink
mend
Browse files Browse the repository at this point in the history
  • Loading branch information
insipx committed Jan 29, 2025
1 parent 872a71b commit 981db95
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 16 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/lint-ffi-bindings.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
env:
CARGO_TERM_COLOR: always
CARGO_INCREMENTAL: 0
RUSTFLAGS: -D warnings
RUSTFLAGS: -D warnings --cfg tracing_unstable
CARGO_PROFILE_TEST_DEBUG: 0
jobs:
lint:
Expand All @@ -22,8 +22,9 @@ jobs:
uses: actions/checkout@v4
- name: Update rust toolchains
run: rustup update
- uses: taiki-e/install-action@cargo-sarif
- uses: taiki-e/install-action@sarif-fmt
- uses: taiki-e/install-action@v2
with:
tool: clippy-sarif,sarif-fmt
- name: Cache
uses: Swatinem/rust-cache@v2
with:
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/lint-node-bindings.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
env:
CARGO_TERM_COLOR: always
CARGO_INCREMENTAL: 0
RUSTFLAGS: -D warnings
RUSTFLAGS: -D warnings --cfg tracing_unstable
CARGO_PROFILE_TEST_DEBUG: 0
jobs:
lint:
Expand All @@ -19,8 +19,9 @@ jobs:
uses: actions/checkout@v4
- name: Update rust toolchains
run: rustup update
- uses: taiki-e/install-action@cargo-sarif
- uses: taiki-e/install-action@sarif-fmt
- uses: taiki-e/install-action@v2
with:
tool: clippy-sarif,sarif-fmt
- name: Cache
uses: Swatinem/rust-cache@v2
with:
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/lint-wasm-bindings.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
env:
CARGO_TERM_COLOR: always
CARGO_INCREMENTAL: 0
RUSTFLAGS: -D warnings
RUSTFLAGS: -D warnings --cfg tracing_unstable
CARGO_PROFILE_TEST_DEBUG: 0
jobs:
lint:
Expand All @@ -19,8 +19,9 @@ jobs:
uses: actions/checkout@v4
- name: Update rust toolchains
run: rustup update
- uses: taiki-e/install-action@cargo-sarif
- uses: taiki-e/install-action@sarif-fmt
- uses: taiki-e/install-action@v2
with:
tool: clippy-sarif,sarif-fmt
- name: Cache
uses: Swatinem/rust-cache@v2
with:
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/lint-workspace.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ on:
env:
CARGO_TERM_COLOR: always
CARGO_INCREMENTAL: 0
RUSTFLAGS: -D warnings
RUSTFLAGS: -D warnings --cfg tracing_unstable
CARGO_PROFILE_TEST_DEBUG: 0
jobs:
lint:
Expand All @@ -33,8 +33,9 @@ jobs:
uses: actions/checkout@v4
- name: Update rust toolchains
run: rustup update
- uses: taiki-e/install-action@cargo-sarif
- uses: taiki-e/install-action@sarif-fmt
- uses: taiki-e/install-action@v2
with:
tool: clippy-sarif,sarif-fmt
- name: Cache
uses: Swatinem/rust-cache@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-ffi-bindings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ on:
env:
CARGO_TERM_COLOR: always
CARGO_INCREMENTAL: 0
RUSTFLAGS: -D warnings
RUSTFLAGS: -D warnings --cfg tracing_unstable
CARGO_PROFILE_TEST_DEBUG: 0
jobs:
test:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-http-api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ on:
env:
CARGO_TERM_COLOR: always
CARGO_INCREMENTAL: 0
RUSTFLAGS: -D warnings
RUSTFLAGS: -D warnings --cfg tracing_unstable
CARGO_PROFILE_TEST_DEBUG: 0
jobs:
test:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-webassembly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ on:
env:
CARGO_TERM_COLOR: always
CARGO_INCREMENTAL: 0
RUSTFLAGS: -D warnings
RUSTFLAGS: -D warnings --cfg tracing_unstable
CARGO_PROFILE_TEST_DEBUG: 0
WASM_BINDGEN_TEST_TIMEOUT: 240
WASM_BINDGEN_TEST_ONLY_WEB: 1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-workspace.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ on:
env:
CARGO_TERM_COLOR: always
CARGO_INCREMENTAL: 0
RUSTFLAGS: -D warnings
RUSTFLAGS: -D warnings --cfg tracing_unstable
CARGO_PROFILE_TEST_DEBUG: 0
jobs:
test:
Expand Down

0 comments on commit 981db95

Please sign in to comment.