Skip to content

feat: improve rendering performance; fix potential panic with unknown… #4

feat: improve rendering performance; fix potential panic with unknown…

feat: improve rendering performance; fix potential panic with unknown… #4

Workflow file for this run

name: Publish to crates.io
on:
push:
tags:
- "v*"
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: dtolnay/rust-toolchain@stable
- name: Install system dependencies
run: sudo apt-get update && sudo apt-get install -y libclang-dev
- name: Run tests
run: cargo test --workspace --all-features
- name: Publish to crates.io
uses: katyo/publish-crates@v2
with:
registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }}