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
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ jobs:
rustup default stable
- name: Check workspace
run: cargo check --workspace --all-targets
- name: Check examples
run: cargo check --manifest-path examples/Cargo.toml --all-targets
- name: Run library tests
run: cargo test --workspace --lib

Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Generated by Cargo
# will have compiled files and executables
target/
examples/Cargo.lock

# Certs for testing purposes.
certs/
Expand Down
10 changes: 0 additions & 10 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ members = [
"trogon-eventstore-extras",

# internals
"trogon-eventstore-macros",
"examples"
"trogon-eventstore-macros"
]
# Keep examples outside the release graph until https://github.com/googleapis/release-please/pull/2856 lands.
exclude = ["examples"]
Loading