add fonts #167
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: | |
| pull_request: | |
| push: | |
| branches: [ master ] | |
| env: | |
| CODECOV_TOKEN: 690ea968-186e-40df-b491-478de6dc0746 | |
| jobs: | |
| test: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest] | |
| python-version: ['3.10', '3.11', '3.12', '3.13'] | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v6 | |
| - name: Sync dependencies | |
| run: uv sync --group dev --frozen | |
| - name: Install package (editable) | |
| run: uv pip install -e . | |
| - name: Test | |
| run: uv run --group dev pytest --cov=lokalise --cov-report=lcov:coverage.lcov | |
| - name: Coveralls | |
| uses: coverallsapp/github-action@v2 | |
| with: | |
| path-to-lcov: ./coverage.lcov |