adding todo and saving spot, its late

This commit is contained in:
2026-04-03 00:27:33 -04:00
parent 4a98d66b24
commit f8222f2953
2 changed files with 10 additions and 2 deletions

View File

@@ -6,7 +6,7 @@ inputs:
required: false
default: "none"
test-version: #TEST_VERSION
description: "the test library version, if the version is none or standard this value is ignored"
description: "the test library version, if the library is none or standard this value is ignored"
required: false
default: "latest"
test-fail: #TEST_FAIL
@@ -36,10 +36,16 @@ runs:
- name: "install dependencies"
shell: bash
run: ${{ github.action_path }}/src/install.sh
env:
TEST_LIBRARY: ${{ inputs.test-library }}
TEST_VERSION: ${{ inputs.test-version }}
- name: "run unit tests"
shell: bash
run: ${{ github.action_path }}/src/test.sh
env:
TEST_LIBRARY: ${{ inputs.test-library }}
TEST_FAIL: ${{ inputs.test-fail }}
- name: "run security checks"
shell: bash