chore(deps): update dependency aws/aws-cli to v2.22.33 #2732
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: Test | |
on: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
branches: | |
- main | |
env: | |
PYTHON_VENV_ROOT: ${{ github.workspace }}/src/python-venv | |
jobs: | |
aqua: | |
name: Check aqua | |
runs-on: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- uses: aquaproj/aqua-installer@f13c5d2f0357708d85477aabe50fd3f725528745 # v3.1.0 | |
with: | |
aqua_version: v2.42.2 | |
- name: aqua install | |
working-directory: aqua | |
run: aqua i -l | |
install_script: | |
name: Check install script | |
runs-on: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Run setup script | |
run: | | |
python3 -m venv ${PYTHON_VENV_ROOT} | |
source ${PYTHON_VENV_ROOT}/bin/activate | |
./setup.sh | |
zinit: | |
name: Check zinit | |
runs-on: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Install zsh | |
run: | | |
brew install zsh --ignore-dependencies | |
brew install pcre ncurses | |
- name: Setup zinit | |
shell: zsh {0} | |
run: | | |
python3 -m venv ${PYTHON_VENV_ROOT} | |
source ${PYTHON_VENV_ROOT}/bin/activate | |
./setup.sh | |
sh -c "$(curl -fsSL https://git.io/zinit-install)" | |
source ~/.zshrc | |
zinit self-update | |
status_check: | |
name: status check | |
needs: | |
- aqua | |
- install_script | |
- zinit | |
runs-on: ubuntu-latest | |
steps: | |
- run: exit 1 | |
if: failure() |