Skip to content

chore: Add demo to readme #35

chore: Add demo to readme

chore: Add demo to readme #35

Workflow file for this run

name: Test rust
on:
push:
branches:
- trunk
pull_request:
branches:
- trunk
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install latest nightly
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
components: rustfmt, clippy, llvm-tools-preview
- name: Install binutils
run: cargo install cargo-binutils
- name: Build
run: cargo build
- name: Install cargo-difftests
run: cargo install --path cargo-difftests --debug
- name: Test
run: cargo test