Skip to content

support nested items in blocks #131

support nested items in blocks

support nested items in blocks #131

Workflow file for this run

name: ci
on:
push:
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install stable Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
components: clippy
- name: Install LLVM 20 and Polly
run: |
wget https://apt.llvm.org/llvm.sh
chmod +x llvm.sh
sudo ./llvm.sh 20
sudo apt install -y libpolly-20-dev
- name: Lint source code
run: cargo clippy --all-targets --all-features -- --deny warnings
- name: Run unit tests
run: cargo test --all