feat: eliminate group expressions before hir (#70) #105
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Continuous Integration' | |
on: | |
push: | |
branches: | |
- trunk | |
pull_request: | |
env: | |
LLVM_SYS_180_PREFIX: '/usr/lib/llvm-18' | |
jobs: | |
verify: | |
name: 'Verify build' | |
timeout-minutes: 15 | |
runs-on: 'ubuntu-24.04' | |
steps: | |
- uses: 'actions/checkout@v4' | |
- run: sudo apt install llvm-18-dev llvm-18-tools clang-18 libpolly-18-dev | |
- run: echo "/usr/lib/llvm-18/bin" >> $GITHUB_PATH | |
- run: pipx install poetry==2.0.0 | |
- run: poetry install | |
- run: cargo fmt --check | |
- run: cargo build --all | |
- run: cargo test | |
- run: cargo xtask lit |