scope-tui 0.3.0

A simple oscilloscope/vectorscope/spectroscope for your terminal
name: Rust

on:
  push:
    branches: [ "dev", "main" ]
  pull_request:
    branches: [ "dev", "main" ]

env:
  CARGO_TERM_COLOR: always

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v3
    - name: Build
      run: cargo build --verbose --no-default-features --features=tui
    - name: Run tests
      run: cargo test --verbose --no-default-features --features=tui