Skip to content

more action updates #135

more action updates

more action updates #135

Workflow file for this run

name: lint_python
on: [pull_request, push]
jobs:
lint_python:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- run: pip install bandit codespell flake8 velin
- run: bandit --recursive --skip B101,B110 .
- run: codespell resampy
- run: flake8 resampy --count --select=E9,F63,F7,F82 --show-source --statistics
- run: python -m velin --check resampy