Skip to content

valid h5 file after downloading #7

valid h5 file after downloading

valid h5 file after downloading #7

Workflow file for this run

name: Code Quality
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint flake8
- name: Run Pylint (Ignoring Long Lines)
run: |
pylint --disable=C0301 --fail-under=8.0 $(git ls-files '*.py')
- name: Run Flake8 (Ignoring W503, E126, E501)
run: |
flake8 --ignore=W503,E126,E501