diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e240f98..9853a1e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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 diff --git a/README.md b/README.md index d55dce4..53e574b 100644 --- a/README.md +++ b/README.md @@ -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/oscal-cli-action@v1.0.0 +- name: Validate SSP schema and constraints + uses: oscal-club/oscal-cli-action@v1.0.4 with: args: ssp validate repo/path/to/ssp.xml - id: convert_ssp -``` \ No newline at end of file + id: validate_ssp +- name: Run shell command with all setup and context from before + run: | + ls -lha + id: post_setup_shell_command +```