Skip to content

add: datasets link file #122

add: datasets link file

add: datasets link file #122

Workflow file for this run

name: Pep8-test
on:
push:
branches: [ "master", "develop"]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.8
uses: actions/setup-python@v3
with:
python-version: "3.8"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8
- name: Run PEP8 test
run: |
flake8 --max-line-length=180 --exclude=tests/*,src/DL/*,src/ML/*,docs/*,src/data_processing/* .