From 5b680ae8490971078fe834b31ca37ddcf2fbf059 Mon Sep 17 00:00:00 2001 From: danicheg Date: Sun, 7 Apr 2024 23:06:39 +0400 Subject: [PATCH] Fix several typos on the GitHub-Actions-with-sbt page --- .../04-GitHub-Actions-with-sbt.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/reference/02-DetailTopics/05-Plugins-and-Best-Practices/04-GitHub-Actions-with-sbt.md b/src/reference/02-DetailTopics/05-Plugins-and-Best-Practices/04-GitHub-Actions-with-sbt.md index 1a6293be..a5a54a3c 100644 --- a/src/reference/02-DetailTopics/05-Plugins-and-Best-Practices/04-GitHub-Actions-with-sbt.md +++ b/src/reference/02-DetailTopics/05-Plugins-and-Best-Practices/04-GitHub-Actions-with-sbt.md @@ -11,7 +11,7 @@ out: GitHub-Actions-with-sbt.html Setting up GitHub Actions with sbt ---------------------------------- -[GitHub Actions][GA] is a workflow system by GitHub that supports continuous integration (CI) and continuous deployment (CD). As CI/CD feature was introduced in [2019](https://github.blog/2019-08-08-github-actions-now-supports-ci-cd/), it's a newcomer in the CI/CD field, but it quickly rised to the de-facto standard CI solution for open source Scala projects. +[GitHub Actions][GA] is a workflow system by GitHub that supports continuous integration (CI) and continuous deployment (CD). As CI/CD feature was introduced in [2019](https://github.blog/2019-08-08-github-actions-now-supports-ci-cd/), it's a newcomer in the CI/CD field, but it quickly raised to the de-facto standard CI solution for open source Scala projects. ### Set `project/build.properties` @@ -139,7 +139,7 @@ Overall, the use of caching should shave off a few minutes of build time per job ### Build matrix -When creating a continous integration job, it's fairly common to split up the task into multiple jobs that runs in parallel. For example, we could: +When creating a continuous integration job, it's fairly common to split up the task into multiple jobs that runs in parallel. For example, we could: - Run identical tests on JDK 8, JDK 11, Linux, macOS, and Windows - Run different subset of tests on the same JDK, OS, and other setups