Skip to content

poc: Add an example showcasing FLP with Shamir's #678

poc: Add an example showcasing FLP with Shamir's

poc: Add an example showcasing FLP with Shamir's #678

Workflow file for this run

name: Lint Python
on:
push:
branches:
- main
paths:
- '.github/workflows/lint-python.yml'
- 'poc/**'
pull_request:
paths:
- '.github/workflows/lint-python.yml'
- 'poc/**'
jobs:
test:
name: "Check formatting"
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install tools
run: pip install pyflakes autopep8 isort pylint
- name: Run pyflakes
working-directory: poc
run: pyflakes *.py vdaf_poc/*.py tests/*.py
- name: Run autopep8
working-directory: poc
run: autopep8 --diff --exit-code *.py vdaf_poc/*.py tests/*.py
- name: Run isort
working-directory: poc
run: isort --check .
- name: Run pylint
working-directory: poc
run: pylint --disable=all --enable=redefined-outer-name *.py vdaf_poc/*.py tests/*.py