Skip to content

chore: regenerate all ado-aw workflows with v0.30.1 #659

chore: regenerate all ado-aw workflows with v0.30.1

chore: regenerate all ado-aw workflows with v0.30.1 #659

Workflow file for this run

name: Rust Tests
on:
pull_request:
paths:
- "src/**"
- "tests/**"
- "Cargo.toml"
- "Cargo.lock"
env:
CARGO_TERM_COLOR: always
jobs:
test:
name: Build & Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- name: Install shellcheck
# ubuntu-latest already ships shellcheck, but install explicitly to
# guarantee it on every refresh of the runner image and to surface
# a clear failure when the bash-lint integration test is enforced.
run: sudo apt-get update && sudo apt-get install -y shellcheck
- name: Build
run: cargo build --verbose
- name: Run tests
env:
ENFORCE_BASH_LINT: "1"
run: cargo test --verbose