Skip to content

fix(ui): Fix error when building without debug assertions #3

fix(ui): Fix error when building without debug assertions

fix(ui): Fix error when building without debug assertions #3

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Print Rust version
run: rustc -vV
- name: Run tests
run: cargo test --all-features --verbose
- name: Run bench
run: cargo bench --all-features --verbose
- name: Run doc
run: cargo doc --all-features --verbose