Change measurement type of Prio3MultihotCountVec (#514) #676
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: 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 |