Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,13 @@ jobs:

- name: Install Rust
uses: dtolnay/rust-toolchain@stable

- name: Caching
uses: actions/cache@v4
with:
path: |
~/.cargo
key: ${{ runner.os }}-cargo-${{ hashFiles('**Cargo.lock')}}

- name: Check disk space
run: df -h
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,12 @@ jobs:
- name: Install Rust
uses: dtolnay/rust-toolchain@stable

- name: Check disk space
run: df -h
- name: Caching
uses: actions/cache@v4
with:
path: |
~/.cargo
key: ${{ runner.os }}-cargo-${{ hashFiles('**Cargo.lock')}}

- name: Build with cargo
run: cargo build --verbose
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,13 @@ jobs:
- name: Install Rust
uses: dtolnay/rust-toolchain@stable

- name: Caching
uses: actions/cache@v4
with:
path: |
~/.cargo
key: ${{ runner.os }}-cargo-${{ hashFiles('**Cargo.lock')}}

- name: Setup quarto
uses: quarto-dev/quarto-actions/setup@v2

Expand Down