Skip to content

Commit

Permalink
Fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
AmrDeveloper committed Apr 5, 2024
1 parent 1b88f43 commit 684aa2a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 10 deletions.
10 changes: 1 addition & 9 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,4 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: cargo fmt --all -- --check

clippy:
name: Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: cargo clippy -- -D warnings
- run: cargo fmt --all -- --check
8 changes: 7 additions & 1 deletion src/schema.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,13 @@ lazy_static! {
let mut map = HashMap::new();
map.insert(
"functions",
vec!["name", "signature", "args_count", "return_type", "is_method"],
vec![
"name",
"signature",
"args_count",
"return_type",
"is_method",
],
);
map
};
Expand Down

0 comments on commit 684aa2a

Please sign in to comment.