Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/actions/cora-review/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,9 @@ runs:
INPUT_BASE: ${{ inputs.base-branch }}
INPUT_SEVERITY: ${{ inputs.severity }}
run: |
cora review \
# Set higher diff limit for CI (default 50K is too small for large PRs)
printf 'hook:\n max_diff_size: 200000\n' > .cora-ci.yaml
CORA_CONFIG=".cora-ci.yaml" cora review \
--base "$INPUT_BASE" \
--format sarif \
--severity "$INPUT_SEVERITY" \
Expand Down
9 changes: 9 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,15 @@ jobs:
- uses: Swatinem/rust-cache@v2
- run: cargo clippy --all-targets -- -D warnings

audit:
name: Security Audit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: rustsec/audit-check@858dc40f52ca2b8570b7a997c1c4e35c6fc9a432
with:
token: ${{ secrets.GITHUB_TOKEN }}

Comment thread
coderabbitai[bot] marked this conversation as resolved.
test:
name: Test
runs-on: ubuntu-latest
Expand Down
163 changes: 162 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ indicatif = "0.18"
# File system
dirs = "6"
glob = "0.3"
walkdir = "2"
ignore = "0.4"

# Error handling
anyhow = "1"
Expand All @@ -52,6 +52,7 @@ tracing-subscriber = { version = "0.3", features = ["env-filter"] }
regex = "1"
futures-util = "0.3"
sha2 = "0.10"
chrono = { version = "0.4.44", features = ["serde"] }

[dev-dependencies]
assert_cmd = "2"
Expand Down
Loading
Loading