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
bash
From #86, there's a suggestion regarding which bash test runner to use for um2nc entrypoints:
um2nc
https://github.com/ACCESS-NRI/um2nc-standalone/blob/82/un2nc-ci-entry-test/.github/workflows/CI.yml#L96-L102
- name: Entrypoint test of driver script shell: bash -l {0} run: esm1p5_convert_nc --help - name: Entrypoint test of um2netcdf script shell: bash -l {0} run: um2nc --help
@CodeGat suggested removing shell: bash -l {0} lines to use the default bash --noprofile --norc -eo pipefail {0} provided by GitHub. See https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsshell. It is not clear if this works with conda environments required for testing (part of the reason for using bash -l.
shell: bash -l {0}
bash --noprofile --norc -eo pipefail {0}
conda
bash -l
The first step in this task is testing if the GitHub default bash command works with conda.
The text was updated successfully, but these errors were encountered:
um2netcdf
No branches or pull requests
From #86, there's a suggestion regarding which
bash
test runner to use forum2nc
entrypoints:https://github.com/ACCESS-NRI/um2nc-standalone/blob/82/un2nc-ci-entry-test/.github/workflows/CI.yml#L96-L102
@CodeGat suggested removing
shell: bash -l {0}
lines to use the defaultbash --noprofile --norc -eo pipefail {0}
provided by GitHub. See https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsshell. It is not clear if this works withconda
environments required for testing (part of the reason for usingbash -l
.The first step in this task is testing if the GitHub default
bash
command works withconda
.The text was updated successfully, but these errors were encountered: