https://github.com/ciffelia/cargo-cache-action
GitHub Action for caching cargo dependencies
https://github.com/ciffelia/cargo-cache-action
actions cargo rust
Last synced: 2 months ago
JSON representation
GitHub Action for caching cargo dependencies
- Host: GitHub
- URL: https://github.com/ciffelia/cargo-cache-action
- Owner: ciffelia
- License: mit
- Created: 2022-10-09T14:10:54.000Z (over 3 years ago)
- Default Branch: release/v1
- Last Pushed: 2023-03-30T16:28:07.000Z (about 3 years ago)
- Last Synced: 2025-01-18T14:46:50.057Z (over 1 year ago)
- Topics: actions, cargo, rust
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# cargo-cache-action
GitHub Action for caching cargo dependencies
## Example
```yaml
on: [push]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- uses: ciffelia/cargo-cache-action@v1
- run: cargo check
```