Skip to content

Ignore nan spectrogram values #216

Ignore nan spectrogram values

Ignore nan spectrogram values #216

Workflow file for this run

# ---------------------------
#
# Check the source files for quality issues
#
# ---------------------------
name: Lint
on:
push:
branches:
- main
- master
- release/**
pull_request:
branches:
- main
- master
- release/**
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
flake8:
name: Flake8
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install "flake8>=3.7.0"
- name: Lint with flake8
run: python -m flake8 .