Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
metamorphic-spyware committed Jun 15, 2021
2 parents 70b884f + bdf2419 commit 9f1df87
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
22 changes: 22 additions & 0 deletions .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Pylint

on: [push]

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: |
python -m pip install --upgrade pip
pip install pylint
- name: Analysing the code with pylint
run: |
pylint `ls -R|grep .py$|xargs`
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# EnroCrypt
This is a Python Module For Encryption, Hashing And Other Basic Stuff You Need, With Secure Encryption And Strong Salted Hashing You Can Do Whatever You Want To <br>
[![Downloads](https://static.pepy.tech/personalized-badge/enrocrypt?period=total&units=international_system&left_color=yellow&right_color=red&left_text=Downloads)](https://pepy.tech/project/enrocrypt)
[![Downloads](https://static.pepy.tech/personalized-badge/enrocrypt?period=total&units=international_system&left_color=yellow&right_color=red&left_text=Downloads)](https://pepy.tech/project/enrocrypt)<br><h3>[Docs](https://morgan-phoenix.github.io/EnroCrypt/Docs)</h3>
## Installation
EnroCrypt Is Avaliable On <a style="text-decoration:none;" herf="https://pypi.org/projects/enrocrypt">PyPi </a>You Can Install It As Follows:<br>
```` pip install -U enrocrypt````
Expand Down

0 comments on commit 9f1df87

Please sign in to comment.