From f552f360f567c1a881734c48c7322eed74c7e8c3 Mon Sep 17 00:00:00 2001 From: "Kassandra Keeton (the Prosperous Heart)" Date: Sun, 11 Jun 2023 16:48:34 -0500 Subject: [PATCH 1/2] additional CI info --- docs/CI_Explainer.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/CI_Explainer.md b/docs/CI_Explainer.md index bfe79b7..dd71de1 100644 --- a/docs/CI_Explainer.md +++ b/docs/CI_Explainer.md @@ -4,6 +4,10 @@ In order to assist our volunteers in understanding [the Continuous Integration f This will not be a complete explanation - you can learn more [here](https://docs.github.com/en/actions/learn-github-actions). +[Continous Integration](https://docs.gitlab.com/ee/ci/introduction/) is what developers call the automatic process of linting (checking code for style errors or erros in general), testing, and other checks BEFORE your branch is merged (integrated). This is done usually through platforms that are running "jobs" for these various tasks. + +Here we're using [GitHub Workflows](https://docs.github.com/en/actions/using-workflows) as our CI runner to execute these tasks for us. + # Structure Explanations You can understand the workflow file [here](https://docs.github.com/en/actions/learn-github-actions/understanding-github-actions#understanding-the-workflow-file). From 230bc9fd4ebe7853789264ef9df89659ad34ad3b Mon Sep 17 00:00:00 2001 From: Kassandra Keeton Date: Sun, 8 Oct 2023 21:32:50 -0500 Subject: [PATCH 2/2] Update docs/CI_Explainer.md fix from @RobinHerzig --- docs/CI_Explainer.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/CI_Explainer.md b/docs/CI_Explainer.md index dd71de1..34c645c 100644 --- a/docs/CI_Explainer.md +++ b/docs/CI_Explainer.md @@ -4,7 +4,7 @@ In order to assist our volunteers in understanding [the Continuous Integration f This will not be a complete explanation - you can learn more [here](https://docs.github.com/en/actions/learn-github-actions). -[Continous Integration](https://docs.gitlab.com/ee/ci/introduction/) is what developers call the automatic process of linting (checking code for style errors or erros in general), testing, and other checks BEFORE your branch is merged (integrated). This is done usually through platforms that are running "jobs" for these various tasks. +[Continous Integration](https://docs.gitlab.com/ee/ci/introduction/) is what developers call the automatic process of linting (checking code for style errors or errors in general), testing, and other checks BEFORE your branch is merged (integrated). This is done usually through platforms that are running "jobs" for these various tasks. Here we're using [GitHub Workflows](https://docs.github.com/en/actions/using-workflows) as our CI runner to execute these tasks for us.