Skip to content

Commit

Permalink
Fixes in workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
guillemcordoba committed May 27, 2024
1 parent d9d7ace commit 22ebb0e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build-scaffold-holochain-runtime.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ jobs:
- name: Test scaffold-holochain-runtime
run: |
cargo test -p scaffold-holochain-runtime
sh ./crates/scaffold-holochain-runtime/run_test.sh
- name: Cache scaffold-holochain-runtime
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/build-scaffold-tauri-app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ jobs:
- name: Test scaffold-tauri-app
run: |
cargo test -p scaffold-tauri-app
sh ./crates/scaffold-tauri-app/run_test.sh
- name: Cache scaffold-tauri-app
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,5 @@ jobs:
with:
name: darksoil-studio

- name: Run tests
- name: Run flake tests
run: nix flake check -L
4 changes: 2 additions & 2 deletions crates/tauri-plugin-holochain/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ impl<R: Runtime> HolochainPlugin<R> {
/// Build a window that opens the UI for the given holochain web-app.
///
/// * `app_id` - the app whose UI will be open. The must have been installed before with `Self::install_web_app()`.
/// * `url_path` - url path for the window that will be opened.
/// * `url_path` - [url path](https://developer.mozilla.org/en-US/docs/Web/API/URL/pathname) for the window that will be opened.
pub fn web_happ_window_builder(
&self,
app_id: InstalledAppId,
Expand Down Expand Up @@ -126,7 +126,7 @@ impl<R: Runtime> HolochainPlugin<R> {
/// * `label` - the identifier of the window.
/// * `enable_admin_websocket` - whether the window should have direct access to the `AdminWebsocket`'s API.
/// * `enabled_app` - an optional `app_id` for the app whose `AppWebsocket` should be enabled in the window.
/// * `url_path` - url path for the window that will be opened.
/// * `url_path` - [url path](https://developer.mozilla.org/en-US/docs/Web/API/URL/pathname) for the window that will be opened.
pub fn main_window_builder(
&self,
label: String,
Expand Down

0 comments on commit 22ebb0e

Please sign in to comment.