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 7d46b85 commit fa14bd1Copy full SHA for fa14bd1
.github/workflows/ci.yml
@@ -27,6 +27,8 @@ jobs:
27
build-and-run:
28
needs: detect-examples
29
runs-on: ubuntu-latest
30
+ env:
31
+ ASAN_OPTIONS: detect_leaks=1
32
strategy:
33
matrix:
34
folder: ${{ fromJSON('["' + needs.detect-examples.outputs.folders | replace(' ', '","') + '"]') }}
.gitignore
@@ -1 +1,17 @@
1
-.o
+# Object files
2
+*.o
3
+
4
+# Executable
5
+thread_safe_queue
6
+unique_ptr_basics
7
+*.out
8
9
+# Backup files
10
+*~
11
+*.swp
12
13
+# CMake / IDE files
14
+CMakeFiles/
15
+CMakeCache.txt
16
+*.idea/
17
+*.vscode/
0 commit comments