Skip to content

Commit

Permalink
Merge 875ca09 into 7d60847
Browse files Browse the repository at this point in the history
  • Loading branch information
iprafols committed May 12, 2022
2 parents 7d60847 + 875ca09 commit 11ac767
Show file tree
Hide file tree
Showing 21 changed files with 1,871 additions and 906 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Pylint

on: [push, pull_request]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install dependencies
run: |
sudo apt-get -y install libbz2-dev
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
pip install pylint
- name: Install SQUEzE
run: pip install -e .
- name: Analysing the code with pylint
run: |
pylint py/squeze/*py

0 comments on commit 11ac767

Please sign in to comment.