Skip to content

Commit

Permalink
chore: added cargo clean to resolve issues with cache
Browse files Browse the repository at this point in the history
  • Loading branch information
frolvanya committed Aug 22, 2024
1 parent 5ad0ca1 commit 4fd2e78
Show file tree
Hide file tree
Showing 2 changed files with 237 additions and 175 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,24 @@ jobs:
- name: Set up Rust
uses: actions-rs/toolchain@v1

- name: Cargo update
run: cargo update

- name: Git log
run: git log

- name: Print mod
run: cat rpc-server/src/modules/network/mod.rs

- name: Print method
run: cat rpc-server/src/modules/network/method.rs

- name: Search for jsonrpc_v2 references
run: grep -R "jsonrpc_v2" .

- name: Print Cargo.toml
run: cat Cargo.toml

- name: Cargo check
run: cargo check --all-features

Expand Down Expand Up @@ -53,5 +71,8 @@ jobs:
with:
components: clippy

- name: Cargo update
run: cargo update

- name: Cargo clippy
run: cargo clippy --all -- -D warnings
Loading

0 comments on commit 4fd2e78

Please sign in to comment.