-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
28 lines (25 loc) · 815 Bytes
/
Copy pathaction.yml
File metadata and controls
28 lines (25 loc) · 815 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
name: 'Run in Rust Lambda Environment'
description: 'Runs commands inside a Docker container with a pre-configured Rust and cargo-lambda toolchain.'
author: 'Diego Navarro'
branding:
icon: 'package'
color: 'orange'
inputs:
rust_version:
description: 'The version of the Rust toolchain to use (e.g., stable, 1.95.0).'
required: false
default: 'stable'
rust_target:
description: 'The Rust target for cross-compilation.'
required: false
default: 'x86_64-unknown-linux-musl'
cargo_lambda_version:
description: 'The version of cargo-lambda to install (e.g., 1.2.0).'
required: false
default: '1.9.1'
command:
description: 'The command to execute inside the container (e.g., "cargo test --release").'
required: true
runs:
using: 'docker'
image: 'Dockerfile'