refactor: rewrite for loops into infinite loops with if statement #25
Workflow file for this run
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: cargo fmt --check | |
- run: cargo build --all | |
- run: cargo test |