Skip to content

try jemalloc; update docs #17 #8

try jemalloc; update docs #17

try jemalloc; update docs #17 #8

Workflow file for this run

on:
release:
types: [created]
name: Publish to crate
jobs:
publish:
name: Publish to cargo
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: nightly
components: clippy
- run: cargo test
- run: cargo run -- -s demos/hello.cirru
- run: cargo run -- -s demos/sum.cirru
- run: cargo run -- -s demos/assert.cirru
- run: cargo run -- -s demos/nested.cirru
- run: cargo run -- -s demos/named.cirru
- run: cargo run -- -s demos/recur.cirru
- run: cargo run -- -s demos/fibonacci.cirru
- run: cargo run -- -s demos/if.cirru
- run: cargo run -- -s demos/fibo-if.cirru
- run: cargo run -- --emit-binary target/a.calx demos/named.cirru && cargo run -- --eval-binary target/a.calx
# - run: cargo test
- uses: katyo/publish-crates@v1
with:
registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }}