fix: move sys_traits to shell feature to fix Wasm build #413
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: ci | |
| on: | |
| pull_request: | |
| branches: [main] | |
| push: | |
| branches: [main] | |
| tags: | |
| - '*' | |
| jobs: | |
| rust: | |
| name: deno_task_shell-${{ matrix.os }} | |
| runs-on: ${{ matrix.os }} | |
| timeout-minutes: 30 | |
| strategy: | |
| matrix: | |
| os: [macOS-latest, ubuntu-latest, windows-latest] | |
| env: | |
| CARGO_INCREMENTAL: 0 | |
| GH_ACTIONS: 1 | |
| RUST_BACKTRACE: full | |
| RUSTFLAGS: -D warnings | |
| steps: | |
| - name: Clone repository | |
| uses: actions/checkout@v4 | |
| - uses: denoland/setup-deno@v1 | |
| with: | |
| deno-version: canary | |
| - uses: dsherret/rust-toolchain-file@v1 | |
| - uses: Swatinem/rust-cache@v2 | |
| with: | |
| save-if: ${{ github.ref == 'refs/heads/main' }} | |
| - name: Format | |
| if: contains(matrix.os, 'ubuntu') | |
| run: cargo fmt --all -- --check | |
| - name: Lint | |
| if: contains(matrix.os, 'ubuntu') | |
| run: cargo clippy --all-targets --all-features --release | |
| - name: Build only parser in Wasm | |
| if: contains(matrix.os, 'ubuntu') | |
| run: | | |
| rutup target add wasm32-unknown-unknown | |
| cargo build --no-default-features --target wasm32-unknown-unknown | |
| - name: Build | |
| run: cargo build --all-targets --all-features --release | |
| - name: Test | |
| run: cargo test --all-targets --all-features --release | |
| - name: Publish | |
| if: | | |
| github.repository == 'denoland/deno_task_shell' && | |
| startsWith(github.ref, 'refs/tags/') && | |
| contains(matrix.os, 'ubuntu') | |
| env: | |
| CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} | |
| run: | | |
| cargo publish |