Skip to content

working on the federated optimisation #49

working on the federated optimisation

working on the federated optimisation #49

Workflow file for this run

name: Unit Tests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
# - name: Deploy to GitHub Pages
# uses: peaceiris/actions-gh-pages@v3
# with:
# deploy_key: ${{ secrets.GITHUB_TOKEN }}
# publish_dir: docs/build
# - name: Run unit tests
# run: |
# python -m unittest discover tests