Skip to content

fix: six correctness bugs across analyser, navigation, shellcheck, an… #41

fix: six correctness bugs across analyser, navigation, shellcheck, an…

fix: six correctness bugs across analyser, navigation, shellcheck, an… #41

Workflow file for this run

name: CI
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
on:
workflow_dispatch:
workflow_call:
pull_request:
push:
branches: [main]
tags-ignore: ['**']
paths:
- 'src/**'
- 'tests/**'
- 'Cargo.toml'
- 'Cargo.lock'
- '.github/workflows/**'
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
components: rustfmt, clippy
- name: Install shellcheck and shfmt
run: sudo apt-get install -y shellcheck shfmt
- run: cargo fmt -- --check
- run: cargo clippy -- -D warnings
- run: cargo test