Skip to content

Make max_gap work in the DFA #335

Make max_gap work in the DFA

Make max_gap work in the DFA #335

Workflow file for this run

name: Build tests
on: [push, pull_request]
jobs:
linux:
name: Linux
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup LLVM
uses: KyleMayes/[email protected]
with:
version: "17"
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'adopt'
- name: Rust stable
run: |
rustup update stable
rustup default stable
- name: Build IrpTransmogrifier
run: |
mvn compile
mvn package
working-directory: irp/tests/IrpTransmogrifier
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose --workspace
- name: Run cargo fmt
run: cargo fmt --all -- --check
- name: Run cargo clippy
run: cargo clippy --workspace --tests --bins -- -D warnings
- name: Run cargo doc
run: cargo doc --workspace --bins