Skip to content

feat: Add Python bindings #875

feat: Add Python bindings

feat: Add Python bindings #875

Workflow file for this run

on:
push:
branches:
- main
pull_request:
name: CI
jobs:
fmt:
runs-on: ubuntu-latest
name: Check formatting
steps:
- uses: actions/checkout@v4
- name: install stable toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
components: rustfmt
- name: cargo fmt
run: cargo fmt --all -- --check
- name: clang-format
uses: jidicula/[email protected]
with:
clang-format-version: 15
check-path: bindings/c
- name: ruff format
uses: chartboost/ruff-action@v1
with:
args: format --check
- name: ruff check
uses: chartboost/ruff-action@v1
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macOS-latest, windows-2019, ubuntu-latest]
name: cargo clippy+test
steps:
- uses: actions/checkout@v4
- name: install stable toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
components: clippy
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.9'
- name: restore cache
uses: Swatinem/rust-cache@v2
- name: cargo clippy
run: cargo clippy --all-targets -- -D warnings
- name: cargo test
run: cargo test
- name: cargo test -p accesskit_windows
if: matrix.os == 'windows-2019'
run: cargo test -p accesskit_windows
generate-headers:
uses: AccessKit/accesskit/.github/workflows/generate-headers.yml@main