Skip to content

chore: extract query-compiler and query-compiler-wasm #14415

chore: extract query-compiler and query-compiler-wasm

chore: extract query-compiler and query-compiler-wasm #14415

Workflow file for this run

name: "All crates: linting"
on:
push:
branches:
- main
pull_request:
paths-ignore:
- ".github/**"
- "!.github/workflows/formatting.yml"
- ".buildkite/**"
- "*.md"
- "LICENSE"
- "CODEOWNERS"
- "renovate.json"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
checks:
name: run lints and formatting checks
runs-on: ubuntu-latest
env:
RUSTFLAGS: "-Dwarnings"
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
components: clippy
targets: wasm32-unknown-unknown
- run: make pedantic
shellcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run ShellCheck
uses: ludeeus/action-shellcheck@master