CHANGELOG: fix Decimal.normalize() precision loss (#28) #117
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: CI | |
| on: push | |
| jobs: | |
| ci: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: ["3.11", "3.12", "3.13"] | |
| poetry-version: ["2.3.1"] | |
| os: ["ubuntu-latest", "macos-latest", "windows-latest"] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install poetry | |
| run: pip install poetry==${{ matrix.poetry-version }} | |
| - name: View poetry --help | |
| run: poetry --help | |
| - name: Run poetry install | |
| run: poetry install | |
| - name: lint | |
| run: poetry run ruff check . | |
| - name: format check | |
| run: poetry run black --check . | |
| - name: sort-check | |
| run: poetry run isort --check-only . | |
| - name: typecheck | |
| run: poetry run mypy l9format | |
| - name: test | |
| run: poetry run pytest | |
| - name: security-audit | |
| run: poetry run pip-audit | |