Update dependency cli/cli to v2.64.0 #41
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/[email protected] | |
with: | |
aqua_version: v2.40.0 | |
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). | |
run: for cmd in $(ls $(aqua root-dir)/bin); do $cmd --version; done |