Update dependency ruff to >=0.16, <0.17 #56
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: Test Jellybench | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - develop | |
| pull_request: | |
| branches: | |
| - main | |
| - develop | |
| jobs: | |
| unittest: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| py_version: ['3.11', '3.12', '3.13'] | |
| runs-on: "ubuntu-latest" | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v7 | |
| - name: Install uv and set python version | |
| uses: astral-sh/setup-uv@v9.0.0 | |
| with: | |
| enable-cache: true | |
| python-version: ${{ matrix.py_version }} | |
| - name: Test util on python ${{ matrix.py_version }} | |
| run: uv run tests/jellybench_py/test_util.py | |