Skip to content

ir-encode.[ch] from ir-ctl for testing #355

ir-encode.[ch] from ir-ctl for testing

ir-encode.[ch] from ir-ctl for testing #355

Workflow file for this run

name: Build tests
on: [push, pull_request]
jobs:
linux:
name: Test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest]
steps:
- name: Checkout sources
uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup LLVM
uses: ZhongRuoyu/setup-llvm@v0
with:
llvm-version: 17
if: matrix.os == 'ubuntu-latest'
- 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 -B -V 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