We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6a5de0c + b8f717f commit f05234eCopy full SHA for f05234e
.github/workflows/ci-cd.yml
@@ -48,5 +48,3 @@ jobs:
48
uses: softprops/action-gh-release@v2
49
with:
50
body: See CHANGELOG.md for this version's changes.
51
-
52
.github/workflows/ci.yml
@@ -0,0 +1,16 @@
1
+name: CI on pushes (except to main)
2
+
3
+on:
4
+ push:
5
+ branches-ignore: [ 'main' ]
6
+jobs:
7
+ test:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: actions/checkout@v4
11
+ - name: Configure CMake for test executable
12
+ run: mkdir -p ./build/cmake && cmake -DBUILD_TYPE="testing" -S . -B ./build/cmake/
13
+ - name: Build test executable
14
+ run: cmake --build ./build/cmake/
15
+ - name: Run tests
16
+ run: ./build/cmake/rubber_numbers
0 commit comments