Skip to content

Bump version to 2.2.2 #976

Bump version to 2.2.2

Bump version to 2.2.2 #976

Workflow file for this run

name: test
on:
push:
pull_request:
workflow_dispatch:
jobs:
test:
strategy:
matrix:
os: [macos-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v5
with:
repository: "aureliojargas/clitest"
path: bin/clitest
- run: sudo apt install zsh bats parallel
if: ${{ runner.os == 'Linux' }}
- run: brew install bash bats-core parallel
if: ${{ runner.os == 'macOS' }}
# macOS ships bash 3.2; bats helpers need 4.0+ builtins like mapfile
- run: echo "$(brew --prefix)/bin" >> "$GITHUB_PATH"
if: ${{ runner.os == 'macOS' }}
- uses: extractions/setup-just@v4
- run: PATH=$GITHUB_WORKSPACE/bin/clitest:$PATH just test-all local
shell: zsh {0}