Skip to content

ci: add workflows

ci: add workflows #1

Workflow file for this run

name: validate
on: [push, pull_request]
concurrency:
group: validate-${{ github.head_ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
lint:
runs-on: macos-latest
steps:
- uses: actions/checkout@v6
- name: Python syntax check
run: |
find . -name "*.py" -exec python3 -m py_compile {} \;
- name: Import check
run: |
python3 -c "import lldbbase"