-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Remove unused build workflow * Update deploy docs workflow * Add separate workflow for linting FFI bindings * Update node bindings lint workflow * Update workspace lint workflow * Update node bindings test workflow * Add separate test workflow for FFI bindings * Update workspace test workflow * Update node bindings release workflow * Update swift bindings release workflow * Update kotlin bindings release workflow * Remove unused release workflow * Update validation server deploy workflow * Upgrade lint workflow machines * Update install command for musl-tools * Update CLI release workflow * Add noop workflow * Include rustfmt.toml for lint steps * Update noop path filtering * Fix workspace format check command * Fix lint issue in FFI bindings * Add caching to doc deploy workflow * Whitespace and comment updates * Update workspace test command * Install foundry for workspace tests * Update noop workflow
- Loading branch information
Showing
17 changed files
with
420 additions
and
567 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 10 additions & 8 deletions
18
...b/workflows/validation-server-publish.yml → ...ub/workflows/deploy-validation-server.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
name: Lint FFI Bindings | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
pull_request: | ||
paths: | ||
- "bindings_ffi/**" | ||
- ".github/workflows/lint-ffi-bindings.yaml" | ||
- "rustfmt.toml" | ||
|
||
jobs: | ||
lint: | ||
name: Lint | ||
runs-on: warp-ubuntu-latest-x64-16x | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Update rust toolchains | ||
run: rustup update | ||
|
||
- name: Cache | ||
uses: Swatinem/rust-cache@v2 | ||
with: | ||
workspaces: | | ||
. | ||
bindings_ffi | ||
- name: Run clippy and fail on warnings | ||
run: cargo clippy --manifest-path bindings_ffi/Cargo.toml --all-features --all-targets --no-deps -- -Dwarnings | ||
|
||
- name: Run format check | ||
run: cargo fmt --manifest-path bindings_ffi/Cargo.toml --check |
Oops, something went wrong.