mirror of
https://github.com/zama-ai/concrete.git
synced 2026-01-20 10:17:59 -05:00
22 lines
529 B
YAML
22 lines
529 B
YAML
inputs:
|
|
ssh_private_key:
|
|
description: 'A ssh key to access private github repository'
|
|
required: true
|
|
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Rust install
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
toolchain: stable
|
|
|
|
- name: Download cargo cache
|
|
uses: Swatinem/rust-cache@v2
|
|
|
|
# A SSH private key is required as some dependencies are from private repos
|
|
- name: Set ssh keys
|
|
uses: webfactory/ssh-agent@v0.6.0
|
|
with:
|
|
ssh-private-key: ${{ inputs.ssh_private_key }}
|