Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .codespellrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[codespell]
# Ref: https://github.com/codespell-project/codespell#using-a-config-file
skip = .git,.gitignore,.gitattributes,.codespellrc
check-hidden = true
# Do not "fix" URLs even if they contain typos
ignore-regex = https?://\S+
# ignore-words-list =
23 changes: 23 additions & 0 deletions .github/workflows/codespell.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Codespell configuration is within .codespellrc
---
name: Codespell

on:
push:
branches: [main]
pull_request:
branches: [main]

permissions:
contents: read

jobs:
codespell:
name: Check for spelling errors
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4
- name: Codespell
uses: codespell-project/actions-codespell@8f01853be192eb0f849a5c7d721450e7a467c579 # v2.2
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This repository contains the tools needed to quickly get started with Postal.

For full details on how to use it [read the documentation](https://docs.postalserver.io).

## Instralling pre-requisites
## Installing pre-requisites

There are a number of pre-requisites needed to run Postal. These are detailed [in the documentation](https://docs.postalserver.io/getting-started/prerequisites). If you're feeling a bit lazy (or just doing a lot of testing) , we have a couple of scripts which you can use to install everything needed.

Expand Down
6 changes: 3 additions & 3 deletions bin/postal
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ run-docker-compose() {
if [ ! -f "docker-compose.yml" ]; then
echo 'No docker-compose file available. Generating using latest available version...'
latest_version=`get-latest-postal-version`
echo "Latest verison is $latest_version"
echo "Latest version is $latest_version"
set-postal-version $latest_version
fi

Expand Down Expand Up @@ -219,7 +219,7 @@ case "$1" in
exit $?
fi

# Get the latest verison of Postal which we want to upgrade
# Get the latest version of Postal which we want to upgrade
# to if no other version is provided.
if [ "$2" == "" ]; then
if [ ! $FORCE_VERSION == "" ]; then
Expand Down Expand Up @@ -288,7 +288,7 @@ case "$1" in
exit 1
fi

# Get the latest verison of Postal as the starting version for a
# Get the latest version of Postal as the starting version for a
# new installation.
if [ ! $FORCE_VERSION == "" ]; then
latest_version="$FORCE_VERSION"
Expand Down