Skip to content

Commit 9e77cf0

Browse files
authored
Merge pull request #7 from tilesprivacy/feat/integrate-mem-aget
Adding local memory management
2 parents 3bd8856 + add58cf commit 9e77cf0

26 files changed

+7218
-88
lines changed

.github/workflows/rust.yml

Lines changed: 21 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,24 @@ jobs:
1616

1717
steps:
1818
- uses: actions/checkout@v4
19-
- name: Build
20-
run: cargo build --verbose
21-
- name: Run tests
22-
run: cargo test --verbose
19+
- uses: dtolnay/rust-toolchain@master
20+
with:
21+
toolchain: 1.90.0
22+
components: rustfmt, clippy
23+
- name: Cache cargo
24+
uses: actions/cache@v4
25+
with:
26+
path: |
27+
~/.cargo/bin
28+
~/.cargo/registry
29+
~/.cargo/git
30+
target
31+
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
32+
restore-keys: |
33+
${{ runner.os }}-cargo-
34+
35+
- name: Install just
36+
run: command -v just || cargo install just
37+
38+
- name: Run check
39+
run: just check

0 commit comments

Comments
 (0)