Skip to content

Commit

Permalink
Solve the conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
nailixing committed May 17, 2020
2 parents f71e1e5 + 42d24af commit d0f4e10
Show file tree
Hide file tree
Showing 102 changed files with 16,667 additions and 3,055 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Lint

on: [push, pull_request]

jobs:
run-linters:
name: Run linters
runs-on: ubuntu-latest

steps:
- name: Check out Git repository
uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: 3.8

- name: Install Python dependencies
run: pip install pylint

- name: Run Pylint
run: find . -type f -name "*.py" | xargs pylint --rcfile=.pylintrc
6 changes: 3 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ __pycache__/

# Sphinx documentation
.doctrees/
docs/*
!docs/src
#docs/*
#!docs/src

# Datasets
data/*
Expand Down Expand Up @@ -56,4 +56,4 @@ test/*
.keras

dist/*
singa_auto.egg-info/*
singa_auto.egg-info/*
Loading

0 comments on commit d0f4e10

Please sign in to comment.