Skip to content

wip ghw diff tests #248

wip ghw diff tests

wip ghw diff tests #248

Workflow file for this run

name: waveform Tests
on:
push:
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
tests:
name: Unit Tests
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- stable
- beta
- nightly
steps:
- name: Update Rust to ${{ matrix.toolchain }}
run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
semver:
name: Check Semantic Versioning
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: obi1kenobi/cargo-semver-checks-action@v2
examples:
name: Try Examples
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- stable
- beta
- nightly
steps:
- name: Update Rust to ${{ matrix.toolchain }}
run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose --examples --release
- name: load_signals
run: cargo run --release --example load_signals -- inputs/xilinx_isim/test1.vcd
serialization:
name: Test Serialization Feature ("serde1")
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- stable
- beta
- nightly
steps:
- name: Update Rust to ${{ matrix.toolchain }}
run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose --features serde1
benchmarks:
name: Benchmarks
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- stable
steps:
- name: Update Rust to ${{ matrix.toolchain }}
run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- uses: actions/checkout@v4
- name: run benchmarks
run: cargo bench --features benchmark