feat(complexity_estimator): complexity of atomic pattern

Resolve #8
This commit is contained in:
rudy
2022-02-03 11:49:49 +01:00
committed by rudy-6-4
parent 7d387baf3e
commit ccd96e8dec
15 changed files with 447 additions and 23 deletions

View File

@@ -39,14 +39,22 @@ jobs:
command: fmt
args: -- --check
- name: cargo build
uses: actions-rs/cargo@v1
env:
RUSTFLAGS: -D warnings
with:
command: build
args: ${{ env.CARGO_ARGS }}
- name: cargo clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: ${{ env.CARGO_ARGS }}
args: ${{ env.CARGO_ARGS }} -- -D warnings
- name: cargo test
uses: actions-rs/cargo@v1
with:
command: test
args: ${{ env.CARGO_ARGS }}
args: ${{ env.CARGO_ARGS }} --no-fail-fast