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 7781007 commit 98812c7Copy full SHA for 98812c7
.github/workflows/ci.yml
@@ -0,0 +1,20 @@
1
+name: C/C++ CI
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ build:
7
+ runs-on: ubuntu-latest
8
+ timeout-minutes: 30
9
+ steps:
10
+ - uses: actions/checkout@v4
11
+ - name: CPU Information
12
+ run: lscpu || echo "CPU information not available"
13
+ - name: Compiler Information
14
+ run: cc -v
15
+ - name: make
16
+ run: make
17
+ - name: Run insert
18
+ run: l=$(find . -executable -type f|grep -v .git) ; for e in $l ; do echo "$e" ; timeout 1m "$e" || echo TIMEOUT; done
19
+ - name: Run Delete
20
+ run: l=$(find . -executable -type f|grep -v .git) ; for e in $l ; do echo "$e" ; timeout 1m "$e" -d || echo TIMEOUT; done
0 commit comments