We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e90d57 commit c094ea8Copy full SHA for c094ea8
.github/workflows/build_and_test.yml
@@ -42,6 +42,22 @@ jobs:
42
run: |
43
make test
44
45
+ python_module:
46
+ name: Build and test Python module
47
+ runs-on: 'ubuntu-20.04'
48
+ steps:
49
+ - name: Build environment setup
50
+ run: |
51
+ echo 'Nothing to do.'
52
+ echo 'GitHub runner includes tools we need already.'
53
+ - uses: actions/checkout@v4
54
+ - name: Build
55
56
+ python setup.py build
57
+ - name: Test
58
59
+ python setup.py test
60
+
61
cmake_build:
62
name: Build and test using CMake
63
runs-on: 'ubuntu-20.04'
0 commit comments