Skip to content

hotfix for actions syntax #2

hotfix for actions syntax

hotfix for actions syntax #2

Workflow file for this run

name: Setup Rust
runs:
using: composite
steps:
- name: Checkout sources
uses: actions/checkout@v3
with:
submodules: recursive
- name: Cargo cache
uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
components: rustfmt, clippy