Skip to content
New issue

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

Add running cmd without oscal-cli in shell after setup #10

Merged
merged 4 commits into from
Jun 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,7 @@ jobs:
with:
debug: true
id: oscal_cli_basic_debug
- name: Run another command that is not oscal-cli after setup
run: |
date
id: alternate_shell_command
12 changes: 8 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,13 @@ the code and setup a Java runtime as dependencies, or it will fail.
distribution: adopt
java-version: 11
id: setup_java
- name: Run oscal-cli for version check (debugging on)
uses: oscal-club/[email protected].0
- name: Validate SSP schema and constraints
uses: oscal-club/[email protected].4
with:
args: ssp validate repo/path/to/ssp.xml
id: convert_ssp
```
id: validate_ssp
- name: Run shell command with all setup and context from before
run: |
ls -lha
id: post_setup_shell_command
```
Loading