Skip to content

fix: 1. fix example. 2. export read_tsc. #5

fix: 1. fix example. 2. export read_tsc.

fix: 1. fix example. 2. export read_tsc. #5

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
defaults:
run:
shell: bash
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust Toolchain
uses: dtolnay/rust-toolchain@stable
with:
toolchain: nightly
- name: Build example
run: cargo build -r --example=tsc_example --verbose
- name: Run tests
run: cargo test --verbose
- name: Run bench
run: cargo +nightly bench --verbose
- name: Run example
run: ./target/release/examples/tsc_example