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 bc90c7e
Show file tree
Hide file tree
Showing 2 changed files with 244 additions and 175 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,28 @@ on:
- database-new

jobs:
debug:
runs-on: ubuntu-latest

steps:
- name: Ls
run: ls

- name: pwd
run: pwd

- 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

check:
runs-on: ubuntu-latest

Expand All @@ -23,6 +45,9 @@ jobs:
- name: Set up Rust
uses: actions-rs/toolchain@v1

- name: Cargo update
run: cargo update

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

Expand Down Expand Up @@ -53,5 +78,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 bc90c7e

Please sign in to comment.