-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add code coverage github action
chore: fix authors/versions
- Loading branch information
1 parent
9ee36b8
commit c5fcac6
Showing
5 changed files
with
33 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,8 +3,11 @@ members = ["contracts/*", "integration", "packages/*"] | |
resolver = "2" | ||
|
||
[workspace.package] | ||
version = "0.0.1" | ||
authors = ["PFC <[email protected]>"] | ||
version = "0.1.1" | ||
authors = [ | ||
"Kerber0x <[email protected]>", | ||
"Nahem <[email protected]>", | ||
"PFC <[email protected]>"] | ||
edition = "2021" | ||
rust-version = "1.73.0" | ||
license = "Apache-2.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,8 @@ | ||
[package] | ||
name = "injective-auction-pool" | ||
description = "Smart contract that allows for community members to pool together INJ to participate in burn auctions" | ||
authors = [ | ||
"Kerber0x <[email protected]>", | ||
"Nahem <[email protected]>", | ||
"PFC <[email protected]>", | ||
] | ||
version = "0.1.0" | ||
authors = { workspace = true } | ||
version = { workspace = true } | ||
|
||
edition = { workspace = true } | ||
license = { workspace = true } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,8 @@ clippy: | |
fmt: | ||
cargo +nightly fmt | ||
|
||
coverage: | ||
cargo +nightly tarpaulin | ||
test: | ||
cargo test | ||
|
||
|