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: 2 months ago
JSON representation

GitHub Action for caching cargo dependencies

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
```