Skip to content

Multi-process RESTful API #717

Multi-process RESTful API

Multi-process RESTful API #717

Workflow file for this run

name: Formatting
on:
push:
branches:
- 'master'
- 'staging**'
pull_request:
branches:
'**'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
# formatting and basic install on cpu-only machine
formatting:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: environment
run: |
which python
python --version
- name: Install DeepSpeed
run: |
pip install git+https://github.com/microsoft/DeepSpeed.git
- name: Install MII
run: |
pip install .[dev]
- name: Formatting checks
run: |
pre-commit run --all-files