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: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,8 @@ jobs:
- uses: Swatinem/rust-cache@v2
- name: Install DB clients
run: sudo apt-get update && sudo apt-get install -y postgresql-client mysql-client
- name: Install radare2 (binary analysis integration tests)
run: sudo apt-get install -y radare2
- name: Apply schema (postgres)
run: |
psql "postgres://postgres:postgres@127.0.0.1:5432/codegraph" -f sql/postgres/001-initial-schema.sql
Expand Down Expand Up @@ -128,6 +130,8 @@ jobs:
RUSTFLAGS: "-Cinstrument-coverage"
TEST_REDIS_DSN: "redis://127.0.0.1:6379"
run: cargo llvm-cov test -p codegraph-graph --features redis --test redis --no-report -- --ignored --nocapture
- name: Binary integration tests (radare2)
run: cargo llvm-cov test -p codegraph-binary --test extract --no-report -- --ignored --nocapture
- name: Generate coverage report (lcov)
run: |
mkdir -p ./target/coverage
Expand Down
Loading
Loading