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
12 changes: 12 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,14 @@ jobs:
run: |
cargo build --manifest-path ./cli/Cargo.toml

- name: Build kwallet-parser
run: |
cargo build --manifest-path ./kwallet/parser/Cargo.toml

- name: Build kwallet-cli
run: |
cargo build --manifest-path ./kwallet/cli/Cargo.toml

- name: Build Server (native)
run: |
cargo build --manifest-path ./server/Cargo.toml
Expand Down Expand Up @@ -68,6 +76,10 @@ jobs:
run: |
cargo test --manifest-path ./server/Cargo.toml --no-default-features --features openssl_crypto

- name: Test kwallet-parser
run: |
cargo test --manifest-path ./kwallet/parser/Cargo.toml

cargo-deny:
runs-on: ubuntu-latest
steps:
Expand Down
Loading
Loading