Skip to content

Rewrite .clang-tidy for project conventions (#35) #139

Rewrite .clang-tidy for project conventions (#35)

Rewrite .clang-tidy for project conventions (#35) #139

Workflow file for this run

name: CI
on:
workflow_dispatch:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build-and-test:
runs-on: ubuntu-latest
env:
BUILD_DIR: build
CC: clang
CXX: clang++
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install Python dependencies
run: pip install -r requirements-dev.txt
- name: Install Python package
run: pip install ./python
- name: Run tests
run: pytest test/ -v
- name: Run ExternDispatch tests
run: pytest test/test_extern_dispatch.py -v