docs: update repository links to new repository #2
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: | |
| branches: [main, develop] | |
| pull_request: | |
| branches: [main, develop] | |
| jobs: | |
| lint-and-test: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| strategy: | |
| matrix: | |
| python-version: ["3.11"] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v4 | |
| with: | |
| enable-cache: true | |
| - name: Set up Python ${{ matrix.python-version }} | |
| run: uv python install ${{ matrix.python-version }} | |
| - name: Install dependencies | |
| run: uv sync | |
| - name: Check formatting with ruff | |
| run: uv run ruff format --check . | |
| - name: Lint with ruff | |
| run: uv run ruff check . | |
| - name: Security check with bandit | |
| run: uv run bandit -c pyproject.toml -r src/ | |
| continue-on-error: true | |
| - name: Type check with mypy | |
| run: uv run mypy src/ | |
| continue-on-error: true | |
| - name: Run tests with coverage | |
| run: uv run pytest --cov=src --cov-report=xml --cov-report=term --ignore=tests/e2e | |
| - name: Upload coverage reports to Codecov | |
| uses: codecov/codecov-action@v5 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| fail_ci_if_error: false |