Skip to content

Bump tensorflow from 2.11.0 to 2.11.1 #60

Bump tensorflow from 2.11.0 to 2.11.1

Bump tensorflow from 2.11.0 to 2.11.1 #60

Workflow file for this run

name: Pylint
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v3
- 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 autopep8
- name: Fixing Indentation with AutoPEP8
working-directory: ./src/MAGIST
run: |
autopep8 --in-place --recursive .
- name: Analysing the code with pylint
working-directory: ./src/MAGIST
run: |
pylint $(git ls-files '*.py') --disable=C0103 --fail-under=3