breakout 0.4.0

Breakout detection for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
name: build
on: [push, pull_request]
jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v6
      - run: cargo test
      # build for no_std to catch errors
      - run: cargo build --features no_std
      - run: cargo test --features no_std