Use base renovate config #3337
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint | |
on: | |
workflow_dispatch: | |
push: | |
branches: ["main"] | |
pull_request: | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
style: | |
name: Check Style | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: Install rust | |
uses: dtolnay/rust-toolchain@be73d7920c329f220ce78e0234b8f96b7ae60248 # stable | |
with: | |
toolchain: stable | |
- name: Install rust nightly | |
run: | | |
rustup toolchain install nightly | |
rustup component add rustfmt --toolchain nightly-x86_64-unknown-linux-gnu | |
- name: Cache cargo registry | |
uses: Swatinem/rust-cache@23bce251a8cd2ffc3c1075eaa2367cf899916d84 # v2.7.3 | |
- name: Cargo fmt | |
run: cargo +nightly fmt --check | |
- name: Set up Node | |
uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # v4.0.1 | |
with: | |
cache: "npm" | |
cache-dependency-path: "package-lock.json" | |
node-version: "16" | |
- name: NPM setup | |
run: npm ci | |
- name: Node Lint | |
run: npm run lint | |
- name: Verify rust documentation links | |
run: cargo doc --no-deps --features internal | |
env: | |
RUSTDOCFLAGS: "-D warnings" | |
- name: Cargo clippy | |
run: cargo clippy --all-features --tests | |
env: | |
RUSTFLAGS: "-D warnings" |