Skip to content

Merge pull request #2086 from felixfontein/age-key-env-space-separated #378

Merge pull request #2086 from felixfontein/age-key-env-space-separated

Merge pull request #2086 from felixfontein/age-key-env-space-separated #378

Workflow file for this run

name: Linters
on:
push:
branches:
- main
pull_request:
branches:
- main
# Only run when Rust version or linted files change
paths:
- 'rust-toolchain.toml'
- 'functional-tests/**/*.rs'
permissions:
contents: read
jobs:
lint:
name: Lint Rust source files
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
# Rustup will detect toolchain version and profile from rust-toolchain.toml
# It will download and install the toolchain and components automatically
# and make them available for subsequent commands
- name: Install Rust toolchain and additional components
run: rustup component add rustfmt
- name: Show Rust version
run: cargo --version
- name: Run Formatting Check
run: cargo fmt --check
working-directory: ./functional-tests