Skip to content

try jemalloc; update docs #50

try jemalloc; update docs

try jemalloc; update docs #50

Workflow file for this run

on:
push:
branches:
- master
pull_request: {}
name: Test
jobs:
build_and_test:
name: Test
runs-on: ubuntu-latest
permissions:
checks: write
contents: read
pull-requests: write
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
- uses: giraffate/clippy-action@v1
with:
reporter: 'github-pr-review'
github_token: ${{ secrets.GITHUB_TOKEN }}