Add UTF-8 based string obfuscation and uipdated examples #158
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: pep8 | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.9 | |
uses: actions/[email protected] | |
with: | |
python-version: 3.9 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
# Runs a set of commands using the runners shell | |
- name: Lint with flake8 | |
run: | | |
pip install flake8 | |
flake8 --select=E --exclude=examples/,input/,output/ --max-line-length 100 --extend-ignore E241 |