Skip to content

fix: App ignore rules are causing all grant states to be true #1308

fix: App ignore rules are causing all grant states to be true

fix: App ignore rules are causing all grant states to be true #1308

Workflow file for this run

name: Build
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
RUSTFLAGS: "-Dwarnings"
jobs:
formatting:
name: Format checker
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
components: rustfmt
- name: Rust Format Checker
uses: actions-rust-lang/rustfmt@v1
clippy_check:
name: Run Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
components: clippy
- run: cargo clippy --tests --examples --all-targets --all-features -- -D warnings -A clippy::large_enum_variant
test:
name: Run Unit Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rust-lang/setup-rust-toolchain@v1
- run: cargo test