fix: BatchJob is updated to work with current OpenAi batch request fo… #3890
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: Ruff | |
on: | |
push: | |
pull_request: | |
branches: [main] | |
env: | |
WORKING_DIRECTORY: "." | |
RUFF_OUTPUT_FILENAME: "ruff.log" | |
CUSTOM_FLAGS: "" | |
CUSTOM_PACKAGES: "instructor examples tests" | |
jobs: | |
Ruff: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Environment setup | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.9 | |
cache: "pip" | |
- name: Install dev dependencies | |
run: | | |
python3 -m pip install --upgrade pip setuptools wheel | |
python3 -m pip install -r requirements.txt | |
python3 -m pip install -r requirements-doc.txt | |
- name: Run Continuous Integration Action | |
uses: astral-sh/ruff-action@v1 | |
- name: Upload Artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ruff-log | |
path: ${{ env.WORKING_DIRECTORY }}/${{ env.RUFF_OUTPUT_FILENAME }} |