fix: remove automatic conversion to non capturing group when part is … #203
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: Build-Test | |
| on: push | |
| jobs: | |
| build-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Setup Rust | |
| run: rustup show | |
| - name: Cache Rust dependencies | |
| uses: Swatinem/rust-cache@v2 | |
| - name: Build Rust binary | |
| run: cargo build --release | |
| - name: Test Rust binary | |
| run: cargo test --release | |
| - name: Install wasm-pack | |
| run: cargo install wasm-pack | |
| # - name: Build pkg from WASM | |
| # run: wasm-pack build --target web | |
| # - name: Install bun | |
| # uses: oven-sh/setup-bun@v1 | |
| # with: | |
| # bun-version: latest | |
| # - name: JS WASM Tests | |
| # run: bun test |