Skip to content

Android helper upload file fix #389

Android helper upload file fix

Android helper upload file fix #389

Workflow file for this run

name: "code checks"
on: push
jobs:
code-checks:
runs-on: ubuntu-20.04
steps:
- name: checkout
uses: actions/checkout@v3
- name: init venv
run: .devcontainer/bin/init_venv.sh
- name: check Python imports
run: >
.venv/bin/isort . --check --diff
--skip .venv
--skip .mnist-keras
--skip .mnist-pytorch
- name: check Python formatting
run: >
.venv/bin/autopep8 --recursive --diff
--exclude .venv
--exclude .mnist-keras
--exclude .mnist-pytorch
.
- name: run Python linter
run: >
.venv/bin/flake8 .
--exclude ".venv,.mnist-keras,.mnist-pytorch,fedn_pb2.py"
- name: check for floating imports
run: >
! grep -E -R
--exclude-dir='.venv'
--exclude-dir='.mnist-pytorch'
--exclude-dir='.mnist-keras'
--exclude-dir='docs'
'^[ \t]+(import|from) ' -I .
# TODO: add linting/formatting for all file types