Update dependency jdx/mise to v2025.1.15 #212
Workflow file for this run
This file contains 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: CLI installation with aqua | |
on: | |
push: | |
paths: | |
- '**/aqua.yaml' | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
cli-installation-with-aqua: | |
runs-on: macos-latest | |
env: | |
AQUA_GLOBAL_CONFIG: .config/aquaproj-aqua/aqua.yaml | |
AQUA_LOG_COLOR: always | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: aquaproj/aqua-installer@v3.1.0 | |
with: | |
aqua_version: v2.42.2 | |
aqua_opts: --all | |
- name: Confirm if the installed commands run as expected | |
# Confirming each and every feature of all the commands is nearly | |
# impossible, so we just check if the installed commands can be run | |
# with --version option at the very least (all the commands installed | |
# with aqua have this option at the moment except for lefthook). | |
run: for cmd in "$(aqua root-dir)"/bin/*; do $cmd --version 2>/dev/null || $cmd version; done |