name: CI
on:
push:
branches:
pull_request:
branches:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: Install ISO tools (Ubuntu)
if: runner.os == 'Linux'
run: sudo apt-get update && sudo apt-get install -y genisoimage
- name: Generate test data
run: make test-data
- name: Build
run: cargo build
- name: Test
run: cargo test