Skip to content

Commit

Permalink
chore(fix): audit
Browse files Browse the repository at this point in the history
  • Loading branch information
waldirborbajr committed Nov 14, 2023
1 parent 5ffd03d commit 345ccc1
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/audit.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Security audit
name: Security Audit

on:
schedule:
Expand Down
21 changes: 17 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
name: CI
name: Rust CI

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
unit_tests:
Expand Down Expand Up @@ -78,8 +80,8 @@ jobs:
# DELTA_BIN=target/${{ matrix.target }}/release/delta
# ./tests/test_raw_output_matches_git_on_full_repo_history $DELTA_BIN
# ./tests/test_deprecated_options $DELTA_BIN > /dev/null
# - name: Run executable
# run: cargo run --release --target ${{ matrix.target }} -- < /dev/null
- name: Run executable
run: cargo run --release --target ${{ matrix.target }} -- < /dev/null

rustfmt:
name: Rustfmt
Expand All @@ -94,6 +96,17 @@ jobs:
- name: Check formatting
run: cargo fmt --all --check

rustaudit:
name: Rust Audit
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install cargo-audit
run: cargo install cargo-audit
- name: Auditting
run: cargo audit

clippy:
name: Clippy
runs-on: ubuntu-latest
Expand All @@ -105,7 +118,7 @@ jobs:
with:
components: clippy
- name: Clippy Check
run: cargo clippy -- -D warnings
run: cargo clippy --verbose -- -D warnings

coverage:
name: Code coverage
Expand Down

0 comments on commit 345ccc1

Please sign in to comment.