Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add cargo deny configuration #64

Merged
merged 3 commits into from
Oct 12, 2023
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
6 changes: 6 additions & 0 deletions .github/workflows/BUILD_LINUX_REUSABLE.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,12 @@ jobs:
- uses: actions/checkout@v3
- name: format
run: cargo fmt -- --check
- name: install cargo-deny
run: cargo install cargo-deny
- name: deny licenses
run: cargo deny check licenses
- name: deny bans
run: cargo deny check bans
- name: Build
run: V8_VERSION=${{ inputs.v8_version }} V8_UPDATE_HEADERS=${{ inputs.v8_update_headers }} cargo build -vv
- name: Run tests
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/BUILD_MAC_REUSABLE.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ jobs:
- uses: actions/checkout@v3
- name: format
run: cargo fmt -- --check
- name: install cargo-deny
run: cargo install cargo-deny
- name: deny licenses
run: cargo deny check licenses
- name: deny bans
run: cargo deny check bans
- name: Build
run: V8_VERSION=${{ inputs.v8_version }} V8_UPDATE_HEADERS=${{ inputs.v8_update_headers }} cargo build --verbose
- name: Run tests
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "v8_rs"
version = "0.3.0"
edition = "2021"
license = "Redis Source Available License 2.0 (RSALv2) or the Server Side Public License v1 (SSPLv1)"
license = "LicenseRef-RSALv2 OR SSPL-1.0"
MeirShpilraien marked this conversation as resolved.
Show resolved Hide resolved

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
Loading