Merge pull request #282 from stanfordnlp/OPS/ops_activating_pre_commi… #1
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: Build Package | |
# Build package on its own without additional pip install | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
env: | |
POETRY_VERSION: "1.6.1" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.9"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Poetry | |
uses: snok/install-poetry@v1 | |
- name: Install dependencies | |
run: poetry install --no-root | |
- name: Build | |
shell: bash | |
run: poetry build | |
- name: Test installing built package | |
shell: bash | |
run: python -m pip install . | |
- name: Test import dspy | |
shell: bash | |
working-directory: ${{ vars.RUNNER_TEMP }} | |
run: python -c "import dspy" | |
- name: Test import dsp | |
shell: bash | |
working-directory: ${{ vars.RUNNER_TEMP }} | |
run: python -c "import dsp" | |