Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add bourne shell to CI and website #10

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
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
13 changes: 13 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,19 @@ jobs:
- run: sudo apt-get install mksh cvs
- run: ./.github/workflows/build.sh ksh "cvs"

sh-nothing:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: ./.github/workflows/build.sh sh ""

sh-cvs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: sudo apt-get install cvs
- run: ./.github/workflows/build.sh sh "cvs"

zsh-nothing:
runs-on: ubuntu-latest
steps:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ utility.
shtk is purely written in the shell scripting language so there are **no
dependencies** to be installed.

shtk is **known to be compatible with at least bash, dash, pdksh and zsh**,
shtk is **known to be compatible with at least bourne shell, bash, dash, pdksh and zsh**,
and continuous integration tests prove this to be the case.

shtk is licensed under a **[liberal BSD 3-clause license](LICENSE)**.
Expand Down
2 changes: 1 addition & 1 deletion site/index.html.frag
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ the <a href="shtk.1.html"><tt>shtk(1)</tt> utility</a>.</p>
<p class="fs-5">shtk is purely written in the shell scripting language so there
are <b>no dependencies</b> to be installed.</p>

<p class="fs-5">shtk is <b>known to be compatible with at least bash, dash,
<p class="fs-5">shtk is <b>known to be compatible with at least bourne shell, bash, dash,
pdksh and zsh</b>, and continuous integration tests prove this to be the
case.</p>

Expand Down