├── .circleci └── config.yml ├── .github └── workflows │ └── ci.yml ├── .gitlab-ci.yml ├── Jenkinsfile ├── License.txt ├── README.md ├── SECURITY.md ├── azure-pipelines.yml ├── code └── dayofyear.m └── tests ├── ParameterizedTestExample.m └── TestExamples.m /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/ci-configuration-examples/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/ci-configuration-examples/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/ci-configuration-examples/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/ci-configuration-examples/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/ci-configuration-examples/HEAD/License.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/ci-configuration-examples/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/ci-configuration-examples/HEAD/SECURITY.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/ci-configuration-examples/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /code/dayofyear.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/ci-configuration-examples/HEAD/code/dayofyear.m -------------------------------------------------------------------------------- /tests/ParameterizedTestExample.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/ci-configuration-examples/HEAD/tests/ParameterizedTestExample.m -------------------------------------------------------------------------------- /tests/TestExamples.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/ci-configuration-examples/HEAD/tests/TestExamples.m --------------------------------------------------------------------------------