d13a165eda
- fix potential code injection in `issue-slash-commands.yaml` by using single quotes insted of double, see https://www.gnu.org/software/bash/manual/html_node/Double-Quotes.html - declare permissions for all workflows, see https://codeql.github.com/codeql-query-help/actions/actions-missing-workflow-permissions Signed-off-by: Adam Perkowski <adas1per@protonmail.com>
48 lines
1.0 KiB
YAML
48 lines
1.0 KiB
YAML
name: Rust Checks
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
on:
|
|
pull_request:
|
|
branches: ["main"]
|
|
paths:
|
|
- '**/*.rs'
|
|
- '**/Cargo.toml'
|
|
- 'Cargo.lock'
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
|
|
jobs:
|
|
lints:
|
|
name: Lints
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout sources
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install Rust
|
|
uses: dtolnay/rust-toolchain@stable
|
|
|
|
- name: Cache Cargo registry
|
|
uses: actions/cache@v4
|
|
with:
|
|
path: ~/.cargo/registry
|
|
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
|
|
restore-keys: ${{ runner.os }}-cargo-registry-
|
|
|
|
- name: Cache Cargo index
|
|
uses: actions/cache@v4
|
|
with:
|
|
path: ~/.cargo/git
|
|
key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }}
|
|
restore-keys: ${{ runner.os }}-cargo-index-
|
|
|
|
- name: Run cargo clippy
|
|
run: cargo clippy -- -Dwarnings
|
|
|
|
- name: Run cargo fmt
|
|
run: cargo fmt --all --check
|