Skip to content
This repository has been archived by the owner on Apr 4, 2024. It is now read-only.

Bump the pip group across 3 directories with 5 updates #4

Bump the pip group across 3 directories with 5 updates

Bump the pip group across 3 directories with 5 updates #4

Workflow file for this run

name: Baselines
on:
push:
branches:
- main
pull_request:
branches:
- main
env:
FLWR_TELEMETRY_ENABLED: 0
defaults:
run:
working-directory: baselines
jobs:
test_baselines:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.8.15
- name: Install build tools
run: |
python -m pip install -U pip==22.3.1
python -m pip install -U setuptools==65.6.3
python -m pip install -U poetry==1.3.2
poetry config virtualenvs.create false
- name: Install dependencies
run: |
python -m poetry install
- name: Lint + Test (isort/black/mypy/pylint/pytest)
run: ./dev/test.sh