Skip to content

Commit

Permalink
include Python module in the build-and-test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
johnbartholomew committed Feb 7, 2024
1 parent 9de2ac9 commit 05bb00d
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,22 @@ jobs:
run: |
make test
python_module:
name: Build and test Python module
runs-on: 'ubuntu-20.04'
steps:
- name: Build environment setup
run: |
echo 'Nothing to do.'
echo 'GitHub runner includes tools we need already.'
- uses: actions/checkout@v4
- name: Build
run: |
python setup.py build
- name: Test
run: |
python setup.py test
cmake_build:
name: Build and test using CMake
runs-on: 'ubuntu-20.04'
Expand Down

0 comments on commit 05bb00d

Please sign in to comment.