Skip to content

Expanding the FLamby Experimental Setup #182

Expanding the FLamby Experimental Setup

Expanding the FLamby Experimental Setup #182

# only has to pass for python 3.9
name: Static code checks
on:
push:
branches:
main
pull_request:
branches:
main
jobs:
run-code-check:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python 3.9
uses: actions/setup-python@v3
with:
python-version: 3.9
cache: 'pip'
- name: precommit checks
run: |
pip install --upgrade pip
pip install -r requirements.txt
pre-commit run --all-files