Skip to content

Fix EISDIR error due to globbed directories (#1) (#132) #63

Fix EISDIR error due to globbed directories (#1) (#132)

Fix EISDIR error due to globbed directories (#1) (#132) #63

Workflow file for this run

name: workspaces
on: [push, pull_request]
jobs:
workspaces:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
name: Test multiple workspaces on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
env:
CARGO_TERM_COLOR: always
steps:
- uses: actions/checkout@v3
# When rustup is updated, it tries to replace its binary, which on Windows is somehow locked.
# This can result in the CI failure, see: https://github.com/rust-lang/rustup/issues/3029
- run: |
rustup set auto-self-update disable
rustup toolchain install stable --profile minimal --target wasm32-unknown-unknown
- uses: ./
with:
workspaces: |
tests
tests/wasm-workspace
- run: cargo check
working-directory: tests
- run: cargo check
working-directory: tests/wasm-workspace