CI / lint (pull_request) Successful in 51s
CI / test (3.12) (pull_request) Successful in 24s
CI / test (3.11) (pull_request) Successful in 26s
CI / test (3.13) (pull_request) Successful in 23s
CI / lint (push) Canceled after 11s
CI / test (3.11) (push) Canceled after 0s
CI / test (3.12) (push) Canceled after 0s
CI / test (3.13) (push) Canceled after 0s
Build and Publish / release (push) Successful in 11s
69 lines
1.5 KiB
YAML
69 lines
1.5 KiB
YAML
name: CI
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v5
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Setup
|
|
uses: ./.gitea/actions/install
|
|
with:
|
|
python_version: "3.12"
|
|
|
|
- name: Format
|
|
run: |
|
|
source .venv/bin/activate
|
|
ruff format --check
|
|
|
|
- name: Lint
|
|
run: |
|
|
source .venv/bin/activate
|
|
ruff check
|
|
|
|
- name: Checkout pyright diff plugin
|
|
uses: https://github.com/actions/checkout@v5
|
|
with:
|
|
repository: mx/diff_quality_basedpyright
|
|
path: diff_quality_basedpyright
|
|
|
|
- name: Typecheck Diff
|
|
run: |
|
|
source .venv/bin/activate
|
|
uv pip install -e diff_quality_basedpyright
|
|
diff-quality --violations=basedpyright --fail-under=100
|
|
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
needs: "lint"
|
|
strategy:
|
|
matrix:
|
|
python-version: ["3.11", "3.12", "3.13"]
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v5
|
|
|
|
- name: Setup
|
|
uses: ./.gitea/actions/install
|
|
with:
|
|
python_version: ${{ matrix.python-version }}
|
|
|
|
- name: Run Pytest with Coverage
|
|
run: |
|
|
source .venv/bin/activate
|
|
pytest --random-order --cov=./ --cov-config=./pyproject.toml --cov-branch --cov-report=xml --no-cov-on-fail ./tests/
|