Skip to content
This repository has been archived by the owner on Oct 31, 2023. It is now read-only.

Commit

Permalink
changed param type, updated action
Browse files Browse the repository at this point in the history
Signed-off-by: Brooks Townsend <brooks@cosmonic.com>
  • Loading branch information
brooksmtownsend committed Jan 18, 2022
1 parent a86a084 commit b4fceb8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,12 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- id: run-nats
uses: wasmcloud/common-actions/run-nats@main
- id: launch-docker-services
run: docker compose -f ./tools/docker-compose.yml up --detach
- id: rust-check-action
uses: wasmcloud/common-actions/rust-check@main
with:
working-directory: ${{ env.working-directory }}
test-options: '--no-fail-fast --bin wash --test "integration*"'
- id: teardown-docker-services
run: docker compose -f ./tools/docker-compose.yml down
2 changes: 1 addition & 1 deletion src/util.rs
Original file line number Diff line number Diff line change
Expand Up @@ -313,6 +313,6 @@ pub(crate) fn set_permissions_keys(path: &Path) -> Result<()> {
}

#[cfg(target_os = "windows")]
pub(crate) fn set_permissions_keys(path: &PathBuf) -> Result<()> {
pub(crate) fn set_permissions_keys(path: &Path) -> Result<()> {
Ok(())
}

0 comments on commit b4fceb8

Please sign in to comment.