Skip to content

Commit fa14bd1

Browse files
committed
gitignore
1 parent 7d46b85 commit fa14bd1

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ jobs:
2727
build-and-run:
2828
needs: detect-examples
2929
runs-on: ubuntu-latest
30+
env:
31+
ASAN_OPTIONS: detect_leaks=1
3032
strategy:
3133
matrix:
3234
folder: ${{ fromJSON('["' + needs.detect-examples.outputs.folders | replace(' ', '","') + '"]') }}

.gitignore

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,17 @@
1-
.o
1+
# 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

Comments
 (0)