Possible fix for issues with initial_prompt #272
Workflow file for this run
This file contains hidden or 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: Pip | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| platform: [windows-latest, macos-14, ubuntu-latest] | |
| python-version: ["3.8", "3.11"] | |
| runs-on: ${{ matrix.platform }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Add requirements | |
| run: python -m pip install --upgrade wheel setuptools | |
| - name: Install requirements | |
| run: python -m pip install -r requirements.txt | |
| - name: Build and install | |
| run: pip install --verbose .[test] | |
| # - name: Test C-API | |
| # run: python -m unittest ./tests/test_c_api.py | |