We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ext
Hey
Related to bids-standard/bids-matlab#108
Trying to list several ext directories to add to the path of the MOxUnit github action give some weird results.
- name: MOxUnit Action uses: joergbrech/moxunit-action@master with: tests: tests src: +bids ext: JSONio tests/utils # < ------ External resources to add to the search put (excluded from coverage) with_coverage: true cover_xml_file: coverage.xml
This fails: https://github.com/bids-standard/bids-matlab/pull/108/checks?check_run_id=1694214979
The setup phase of the action gives this (amongst other things):
addpath(genpath("/github/workspace/JSONio tests/utils"));
I think I would have assumed that the set up phase would do something like this.
addpath(genpath("/github/workspace/JSONio")); addpath(genpath("/github/workspace/tests/utils"));
Am I correct in my expectations?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hey
Related to bids-standard/bids-matlab#108
Trying to list several
ext
directories to add to the path of the MOxUnit github action give some weird results.This fails:
https://github.com/bids-standard/bids-matlab/pull/108/checks?check_run_id=1694214979
The setup phase of the action gives this (amongst other things):
addpath(genpath("/github/workspace/JSONio tests/utils"));
Expected behavior
I think I would have assumed that the set up phase would do something like this.
Am I correct in my expectations?
The text was updated successfully, but these errors were encountered: