refactor(framework) Remove pip install
in flwr install
and the wheel file
#8163
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: PR Check | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened, edited] | |
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 | |
jobs: | |
pr_title_check: | |
runs-on: ubuntu-22.04 | |
name: Title format | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Bootstrap | |
uses: ./.github/actions/bootstrap | |
with: | |
python-version: 3.11 | |
poetry-skip: 'true' | |
- name: Check PR title format | |
run: python ./dev/check_pr_title.py "${{ github.event.pull_request.title }}" |