Skip to content

Prepare v0.9.20240909 #50

Prepare v0.9.20240909

Prepare v0.9.20240909 #50

Workflow file for this run

---
name: test
'on': push
env:
BASE_REL: 0.9.20240303
BASE_SRC: https://github.com/rdavid/shellbase/archive/refs/tags/v0.9.20240303.tar.gz # yamllint disable-line
jobs:
test-linux:
strategy:
matrix:
os: [ubuntu-20.04, ubuntu-22.04]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: redhat-actions/buildah-build@v2
with:
containerfiles: Containerfile
tags: test:v1
- uses: hadolint/[email protected]
with:
dockerfile: Containerfile
recursive: true
- uses: ludeeus/action-shellcheck@master
with:
additional_files: ./*.do
ignore_names: pass
- uses: mfinelli/setup-shfmt@v3
- run: shfmt -d ./*.do
- uses: crate-ci/typos@master
- uses: errata-ai/vale-action@reviewdog
with:
fail_on_error: true
- uses: ibiqlik/action-yamllint@v3
with:
file_or_dir: .github/*.yml .github/workflows/*.yml
strict: true
test-macos:
strategy:
matrix:
os: [macos-12, macos-14]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- run: |
brew install \
asciidoctor \
goredo \
hadolint \
shellcheck \
shfmt \
typos-cli \
vale \
yamllint
curl --location --silent $BASE_SRC |
tar \
--directory /usr/local/bin \
--extract \
--gzip \
--strip-components=2 \
shellbase-$BASE_REL/lib/base.sh
redo -xx lint