Speed up Development Using CI Job Inputs
Our Run CI Job step allows you to optionally specify parameters to provide to your external CI service. This guide will go over a handful of things you can do with an example Rust project.
Optimize Build Times when Debugging
Add inputs to your GitHub Actions Workflow
on:
workflow_dispatch:
inputs:
debug:
type: boolean
description: Specify whether to build with debug
required: false
default: false - name: Build
run: cargo build $COMPILER_FLAG
env:
COMPILER_FLAG: ${{ github.event.inputs.debug == 'false' && '--release' || '' }}
Enabling/Disabling Tests and Checks


Last updated

