Skip to content

Commit

Permalink
debugging CI
Browse files Browse the repository at this point in the history
  • Loading branch information
mldiego committed Oct 18, 2023
1 parent 3b41144 commit 4db46ae
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions code/nnv/engine/utils/is_github_actions.m
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
function out = is_github_actions()
nnvpath = nnvroot();
file_path = [nnvpath, 'github_actions.txt'];
% for debugging
disp(nnvpath);
disp(file_path);
allfiles = dir(nnvpath);
tableFiles = struct2table(allfiles);
disp(tableFiles);
if isfile(file_path)
out = 1;
% 'github actions detected'
Expand Down

0 comments on commit 4db46ae

Please sign in to comment.