Skip to content

sdk%doc: update README to include CI results and codecov reporting #11

sdk%doc: update README to include CI results and codecov reporting

sdk%doc: update README to include CI results and codecov reporting #11

Workflow file for this run

name: Lint
on:
push:
branches: [develop]
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
lint:
name: Lint
runs-on: ubuntu-slim
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Set up Node.js
uses: actions/setup-node@v5
with:
node-version: 24
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version-file: pyproject.toml
- name: Install dependencies
run: pip install ".[dev]"
- name: Run linters
run: python contrib/lint/all_lint.py
- name: Check PR commit messages
if: github.event_name == 'pull_request'
run: >
python contrib/lint/lint_unconv.py
-r "${{ github.event.pull_request.base.sha }}..${{ github.event.pull_request.head.sha }}"