goertzel_algorithm 0.1.0

Goertzel algorithm implementation
Documentation
name: CI

on:
  pull_request:
    branches: [ "main" ]
    types: [ opened, synchronize, reopened ]

env:
  CARGO_TERM_COLOR: always
  CARGO_INCREMENTAL: 0

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v3
    - uses: Swatinem/rust-cache@v2
    - uses: giraffate/clippy-action@v1
      with:
        reporter: 'github-pr-review'
    - name: Print stable Rust version
      run: rustc --version
    - name: Formatter
      run: cargo fmt -- --check    
    - name: Clippy
      run: cargo clippy --all-targets --all-features -- -D warnings
    - name: Build
      run: cargo build --verbose
    - name: Run tests
      run: cargo test --verbose