From 544104760649a5ea29abffec330b2926bb15f282 Mon Sep 17 00:00:00 2001 From: Ivan Ogasawara Date: Sat, 26 Oct 2024 22:51:10 -0400 Subject: [PATCH] fix typos --- docs/guide.md | 4 ++-- .../{{cookiecutter.project_slug}}/.github/workflows/main.yaml | 2 +- .../.github/workflows/release.yaml | 2 +- tests/profiles/test-depends-on.yaml | 2 +- tests/profiles/test-main.yaml | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/guide.md b/docs/guide.md index 2bbe27e2..7e2a944e 100644 --- a/docs/guide.md +++ b/docs/guide.md @@ -31,7 +31,7 @@ The structure of the guide is as follows: - [Governance document](#governance-document) - [Roadmap document](#roadmap-document) - [Version control](#version-control) - - [Continuos Integration](#continuos-integration) + - [Continuous Integration](#continuous-integration) ## Notes about the text-based user interface (TUI) @@ -973,7 +973,7 @@ GitHub and take advantage of its powerful version control features. These functionalities in SciCookie make it easy to manage your project and collaborate with others, while ensuring that your code is properly versioned and tracked. -## Continuos integration +## Continuous integration Continuous Integration (CI) is a development practice where code changes are frequently merged into a shared repository. Each change is automatically built diff --git a/src/scicookie/{{cookiecutter.project_slug}}/.github/workflows/main.yaml b/src/scicookie/{{cookiecutter.project_slug}}/.github/workflows/main.yaml index 23470f67..8c6ee502 100644 --- a/src/scicookie/{{cookiecutter.project_slug}}/.github/workflows/main.yaml +++ b/src/scicookie/{{cookiecutter.project_slug}}/.github/workflows/main.yaml @@ -61,7 +61,7 @@ jobs: auto-update-conda: true conda-solver: libmamba {% else %} - - uses: actions/checkout@v4 + - uses: actions/setup-python@v4 with: python-version: "pypy3.9" diff --git a/src/scicookie/{{cookiecutter.project_slug}}/.github/workflows/release.yaml b/src/scicookie/{{cookiecutter.project_slug}}/.github/workflows/release.yaml index 10972cef..2a5e596c 100644 --- a/src/scicookie/{{cookiecutter.project_slug}}/.github/workflows/release.yaml +++ b/src/scicookie/{{cookiecutter.project_slug}}/.github/workflows/release.yaml @@ -23,7 +23,7 @@ jobs: shell: bash -l {0} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 {% if cookiecutter.use_conda == "yes" %} - uses: conda-incubator/setup-miniconda@v3 with: diff --git a/tests/profiles/test-depends-on.yaml b/tests/profiles/test-depends-on.yaml index 1e8d2fad..ce1321e6 100644 --- a/tests/profiles/test-depends-on.yaml +++ b/tests/profiles/test-depends-on.yaml @@ -300,7 +300,7 @@ git_main_branch: default: main visible: true -continuos_integration: +continuous_integration: message: Select one option for Continuous Integration help: "For more information, check:\n https://osl-incubator.github.io/scicookie/guide/#continuous-integration" type: multiple-choices diff --git a/tests/profiles/test-main.yaml b/tests/profiles/test-main.yaml index 4edb13dd..b4094cdb 100644 --- a/tests/profiles/test-main.yaml +++ b/tests/profiles/test-main.yaml @@ -296,7 +296,7 @@ git_main_branch: default: main visible: true -continuos_integration: +continuous_integration: message: Select one option for Continuous Integration help: "For more information, check:\n https://osl-incubator.github.io/scicookie/guide/#continuous-integration" type: multiple-choices