├── .gitattributes ├── .github └── workflows │ ├── bat.yml │ └── publish.yml ├── .gitignore ├── .prettierignore ├── .prettierrc.yml ├── README.md ├── SECURITY.md ├── action.yml ├── devel └── contributing.md ├── jest.config.js ├── license.txt ├── package.json ├── plugins ├── +matlab │ └── +unittest │ │ └── +internal │ │ └── +services │ │ └── +plugins │ │ └── GitHubLogTestPluginService.m └── +testframework │ └── GitHubLogTestPlugin.m ├── sample ├── TheTruth.m ├── createSampleModel.m └── tAssumptionFailure.m ├── scripts └── setupdeps.sh ├── src ├── index.ts ├── scriptgen.ts └── scriptgen.unit.test.ts └── tsconfig.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matlab-actions/run-tests/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/bat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matlab-actions/run-tests/HEAD/.github/workflows/bat.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matlab-actions/run-tests/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matlab-actions/run-tests/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matlab-actions/run-tests/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matlab-actions/run-tests/HEAD/.prettierrc.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matlab-actions/run-tests/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matlab-actions/run-tests/HEAD/SECURITY.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matlab-actions/run-tests/HEAD/action.yml -------------------------------------------------------------------------------- /devel/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matlab-actions/run-tests/HEAD/devel/contributing.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matlab-actions/run-tests/HEAD/jest.config.js -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matlab-actions/run-tests/HEAD/license.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matlab-actions/run-tests/HEAD/package.json -------------------------------------------------------------------------------- /plugins/+matlab/+unittest/+internal/+services/+plugins/GitHubLogTestPluginService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matlab-actions/run-tests/HEAD/plugins/+matlab/+unittest/+internal/+services/+plugins/GitHubLogTestPluginService.m -------------------------------------------------------------------------------- /plugins/+testframework/GitHubLogTestPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matlab-actions/run-tests/HEAD/plugins/+testframework/GitHubLogTestPlugin.m -------------------------------------------------------------------------------- /sample/TheTruth.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matlab-actions/run-tests/HEAD/sample/TheTruth.m -------------------------------------------------------------------------------- /sample/createSampleModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matlab-actions/run-tests/HEAD/sample/createSampleModel.m -------------------------------------------------------------------------------- /sample/tAssumptionFailure.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matlab-actions/run-tests/HEAD/sample/tAssumptionFailure.m -------------------------------------------------------------------------------- /scripts/setupdeps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matlab-actions/run-tests/HEAD/scripts/setupdeps.sh -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matlab-actions/run-tests/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/scriptgen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matlab-actions/run-tests/HEAD/src/scriptgen.ts -------------------------------------------------------------------------------- /src/scriptgen.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matlab-actions/run-tests/HEAD/src/scriptgen.unit.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matlab-actions/run-tests/HEAD/tsconfig.json --------------------------------------------------------------------------------