Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: about 4 hours 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 (about 2 years ago)
- Default Branch: release/v1
- Last Pushed: 2023-03-30T16:28:07.000Z (over 1 year ago)
- Last Synced: 2024-03-17T18:22:24.279Z (8 months 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
```