Add truncation for long strings in writeByteSizeString #21
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: Tests | |
| on: | |
| push: | |
| branches: [master] | |
| pull_request: | |
| branches: [master] | |
| jobs: | |
| tests: | |
| name: ${{ matrix.name }} | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - {name: '3.14-dev', python: '3.14', just: test} | |
| - {name: '3.13', python: '3.13', just: test} | |
| - {name: '3.12', python: '3.12', just: test} | |
| - {name: '3.11', python: '3.11', just: test} | |
| - {name: '3.10', python: '3.10', just: test} | |
| - {name: '3.9', python: '3.9', just: test} | |
| - {name: PyPy3, python: 'pypy3.11', just: test} | |
| - {name: Lint, python: '3.13', just: lint} | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: astral-sh/setup-uv@v6 | |
| - env: | |
| UV_PYTHON: ${{ matrix.python }} | |
| run: uvx --from rust-just just ${{ matrix.just }} |