Bump version to 2.2.2 #976
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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} |