Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .github/workflows/ci-check-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,10 @@ on:
description: 'The run label to use for the actions'
type: string
default: 'ubuntu-latest'
run-label-light:
description: 'Runner for jobs that never compile the workspace (Formatting, Licenses). These jobs gain nothing from a larger runner: `cargo fmt -- --check` only parses, and cargo-deny runs a prebuilt binary against cargo metadata.'
type: string
default: 'ubuntu-latest'
rust-cache-prefix:
description: 'Prefix for Rust cache key (bump to invalidate all caches)'
type: string
Expand Down Expand Up @@ -115,7 +119,7 @@ jobs:

formatting:
name: Formatting
runs-on: ${{ inputs.run-label }}
runs-on: ${{ inputs.run-label-light }}
steps:
- name: Checkout
uses: actions/checkout@v6
Expand Down Expand Up @@ -255,7 +259,7 @@ jobs:

license:
name: Licenses
runs-on: ${{ inputs.run-label }}
runs-on: ${{ inputs.run-label-light }}
steps:
- uses: actions/checkout@v6
with:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,10 @@ on:
description: 'The run label to use for the actions'
type: string
default: 'ubuntu-latest'
run-label-light:
description: 'Runner for check-app jobs that never compile the workspace (Formatting, Licenses)'
type: string
default: 'ubuntu-latest'
rust-cache-prefix:
description: 'Prefix for Rust cache key (bump to invalidate all caches)'
type: string
Expand Down Expand Up @@ -141,6 +145,7 @@ jobs:
use-postgresql: ${{ inputs.rust-use-postgresql }}
test-env-vars: ${{ inputs.rust-test-env-vars }}
run-label: ${{ inputs.run-label }}
run-label-light: ${{ inputs.run-label-light }}
rust-cache-prefix: ${{ inputs.rust-cache-prefix }}
rust-cache-save: ${{ inputs.rust-cache-save }}

Expand Down