Skip to content

Commit

Permalink
attempt to fix release-plz (#893)
Browse files Browse the repository at this point in the history
* make docs own separate crate
  • Loading branch information
Autoparallel committed Feb 15, 2024
1 parent a2596ab commit 718f2fa
Show file tree
Hide file tree
Showing 8 changed files with 5,448 additions and 86 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/book.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,4 +77,6 @@ jobs:
override: true

- name: test
run: cargo test --package documentation
run: |
cd docs
cargo test
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ jobs:
- name: git submodule update
run: git submodule update --init --recursive
- name: test
run: cargo test --workspace --all-features --exclude documentation
run: cargo test --workspace --all-features
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,5 @@ book
arbiter-core/data
example_fork/test.json

doctest_cache/
doctest_cache/
docs/target/*
77 changes: 2 additions & 75 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[workspace]
# List of crates included in this workspace
members = ["bindings", "core", "engine", "macros", "docs"]
members = ["bindings", "core", "engine", "macros"]

# List of crates excluded from this workspace
exclude = ["benches"]
exclude = ["benches", "docs"]

# Package configuration
[package]
Expand Down
Loading

0 comments on commit 718f2fa

Please sign in to comment.