Remove poetry
mention in README files when using flwr new
#8517
Workflow file for this run
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: Deprecated-Baselines | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref == 'refs/heads/main' && github.run_id || github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
env: | |
FLWR_TELEMETRY_ENABLED: 0 | |
defaults: | |
run: | |
working-directory: baselines/flwr_baselines | |
jobs: | |
test_deprecated_baselines: | |
name: Test | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Bootstrap | |
uses: ./.github/actions/bootstrap | |
with: | |
python-version: 3.8 | |
- name: Install dependencies | |
run: | | |
python -m poetry install | |
- name: Lint + Test (isort/black/mypy/pylint/pytest) | |
run: ./dev/test.sh |