diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 000000000000..5ff04b99102e --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,21 @@ +name: Build DeepSpeed + +on: + pull_request: + +jobs: + deploy: + runs-on: ubuntu-20.04 + environment: release-env + + steps: + - uses: actions/checkout@v3 + with: + ref: "master" + + - id: setup-venv + uses: ./.github/workflows/setup-venv + + - name: Build DeepSpeed + run: | + DS_BUILD_STRING=" " python setup.py sdist \ No newline at end of file