From 78fe095daabe67a00551dd409d06af4bfb40d1d1 Mon Sep 17 00:00:00 2001 From: Loymdayddaud <145969603+TheGiraffe3@users.noreply.github.com> Date: Sun, 29 Sep 2024 06:49:34 +0300 Subject: [PATCH 1/4] Create ignore-words.txt --- .github/workflows/ignore-words.txt | 1 + 1 file changed, 1 insertion(+) create mode 100644 .github/workflows/ignore-words.txt diff --git a/.github/workflows/ignore-words.txt b/.github/workflows/ignore-words.txt new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/.github/workflows/ignore-words.txt @@ -0,0 +1 @@ + From 6e964def3ec94ed2b899b89d44338d492ed9f401 Mon Sep 17 00:00:00 2001 From: Loymdayddaud <145969603+TheGiraffe3@users.noreply.github.com> Date: Sun, 29 Sep 2024 06:50:55 +0300 Subject: [PATCH 2/4] Create spellcheck.yml --- .github/workflows/spellcheck.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/spellcheck.yml diff --git a/.github/workflows/spellcheck.yml b/.github/workflows/spellcheck.yml new file mode 100644 index 0000000..bd0b4c1 --- /dev/null +++ b/.github/workflows/spellcheck.yml @@ -0,0 +1,21 @@ +name: Spell Checking + +on: [push, pull_request] + +jobs: + codespell: + name: Check spelling with codespell + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Set up Python 3.12 + uses: actions/setup-python@v4 + with: + python-version: 3.12 + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install codespell + if [ -f requirements.txt ]; then pip install -r requirements.txt; fi + - name: Check spelling with codespell + run: codespell --ignore-words=.github/workflows/ignore-words.txt || exit 1 From f2e04409a87d5bc3f0cfabfa41a5703c1a42946c Mon Sep 17 00:00:00 2001 From: Loymdayddaud <145969603+TheGiraffe3@users.noreply.github.com> Date: Sun, 29 Sep 2024 06:52:16 +0300 Subject: [PATCH 3/4] Fix a typo --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 84c47b0..9210c55 100644 --- a/index.html +++ b/index.html @@ -26,7 +26,7 @@

A galaxy lies open for you to explore.

-

Fortunately, there are hundreds of different "outfits" - weapons, engines, power generators, cooling systems, and much more - that you can buy to upgrade your ship. With the tiny ship you start out in, equipping it will always involve tradeoffs: buy better engines, to help you run away from pirates? Or sell all the non-essentials to make room for more cargo? Stock ships tend to be well balanced, but once you start modifiying your ship you'll also have to worry about energy requirements and heat dissipation.

+

Fortunately, there are hundreds of different "outfits" - weapons, engines, power generators, cooling systems, and much more - that you can buy to upgrade your ship. With the tiny ship you start out in, equipping it will always involve tradeoffs: buy better engines, to help you run away from pirates? Or sell all the non-essentials to make room for more cargo? Stock ships tend to be well balanced, but once you start modifying your ship you'll also have to worry about energy requirements and heat dissipation.

From 0048cdc437d43fc2531f10d6e79a093c39d59ba9 Mon Sep 17 00:00:00 2001 From: Loymdayddaud <145969603+TheGiraffe3@users.noreply.github.com> Date: Mon, 30 Sep 2024 06:38:37 +0300 Subject: [PATCH 4/4] Remove codespell --- .github/workflows/ignore-words.txt | 1 - .github/workflows/spellcheck.yml | 21 --------------------- 2 files changed, 22 deletions(-) delete mode 100644 .github/workflows/ignore-words.txt delete mode 100644 .github/workflows/spellcheck.yml diff --git a/.github/workflows/ignore-words.txt b/.github/workflows/ignore-words.txt deleted file mode 100644 index 8b13789..0000000 --- a/.github/workflows/ignore-words.txt +++ /dev/null @@ -1 +0,0 @@ - diff --git a/.github/workflows/spellcheck.yml b/.github/workflows/spellcheck.yml deleted file mode 100644 index bd0b4c1..0000000 --- a/.github/workflows/spellcheck.yml +++ /dev/null @@ -1,21 +0,0 @@ -name: Spell Checking - -on: [push, pull_request] - -jobs: - codespell: - name: Check spelling with codespell - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - name: Set up Python 3.12 - uses: actions/setup-python@v4 - with: - python-version: 3.12 - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install codespell - if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - - name: Check spelling with codespell - run: codespell --ignore-words=.github/workflows/ignore-words.txt || exit 1