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
13 changes: 13 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,19 @@ jobs:
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
# Every CI run contributes this build to the public compile-time census
# at <https://cratebank.io/>. It builds what the steps below would have
# built anyway, measured, so what is added here is mostly the measuring.
#
# `strict` because this is the build. A measurement that quietly did not
# happen would mean nothing built the project either, and a green check
# would be saying so about work that never ran.
- uses: PowderworksCode/cratebank/action@v0.1.1
with:
args: --workspace
org-id: powderworks
strict: "true"

- run: cargo fmt --all -- --check
- run: cargo clippy --all-targets -- -D warnings
- run: cargo test --all
Expand Down
7 changes: 7 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,10 @@ repository = "https://github.com/PowderworksCode/jedem"
[workspace.dependencies]
jedem = { path = "crates/jedem", version = "0.1.0" }
jedem-macros = { path = "crates/jedem-macros", version = "0.1.0" }

[workspace.metadata.cratebank]
# Opted in: this repository is public, so its crate names are already
# public. Without this the census records the build and withholds the
# names, which for an open repository is precision nobody asked for.
public = true
repository = "https://github.com/PowderworksCode/jedem"