fix: should panic if anonymous_expr is not called before class_reflec… #6
This file contains 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: Test Suite | |
on: | |
push: | |
branches: | |
- develop | |
pull_request_target: | |
jobs: | |
test_rust: | |
name: Test Rust | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
name: Checkout source | |
- uses: actions/cache@v3 | |
name: Setup Cache | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
simd-target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
- name: Run Rust tests | |
run: | | |
cargo install grcov | |
npm install -g mocha | |
npm ci | |
cargo clean | |
cargo test | |
grcov . --binary-path ./target/debug -s . -t lcov --branch -o ./coverage.lcov | |
env: | |
RUSTFLAGS: -Cinstrument-coverage | |
LLVM_PROFILE_FILE: "%p-%m.profraw" | |
- name: Publish coverage report | |
uses: codecov/codecov-action@v3 | |
with: | |
file: ./coverage.lcov | |
test_node: | |
name: Test (Node.JS ${{ matrix.node_version }}) | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node_version: [16, 18, 20] | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
name: Checkout source | |
- uses: actions/cache@v3 | |
name: Setup Cache | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
simd-target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
- name: Get npm cache directory | |
id: npm-cache-dir | |
shell: bash | |
run: echo "dir=$(npm config get cache)" >> ${GITHUB_OUTPUT} | |
- uses: actions/cache@v3 | |
with: | |
path: ${{ steps.npm-cache-dir.outputs.dir }} | |
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
- uses: actions/setup-node@v3 | |
name: Setup Node.JS | |
with: | |
node-version: ${{ matrix.node_version }} | |
- name: Run WASM tests | |
run: | | |
cargo install wasm-pack --force | |
cargo clean | |
npm install -g mocha | |
npm ci | |
npm test |