1
0
Fork 0
mirror of https://github.com/anrieff/libcpuid synced 2025-10-03 11:01:30 +00:00

Add simple sanity tests of the Python bindings

And include them in the CI together with pylint
and formatting checks.
This commit is contained in:
Pavol Žáčik 2024-07-23 18:06:16 +02:00 committed by The Tumultuous Unicorn Of Darkness
commit 9915832b21
4 changed files with 95 additions and 1 deletions

48
.github/workflows/python.yml vendored Normal file
View file

@ -0,0 +1,48 @@
name: Test Python bindings
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
test_python:
name: Test Python bindings
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Build and install libcpuid
run: |
sudo apt-get install autoconf libtool automake
libtoolize
autoreconf --install
./configure
make
sudo make install
sudo ldconfig
- name: Check code formatting (black)
run: |
pip install black
black --check python
- name: Install the libcpuid Python package
run: pip install ./python
- name: Perform static analysis (pylint)
run: |
pip install pylint
pylint python/src/libcpuid
- name: Run tests
run: |
pip install pytest
pytest ./python