name: Setup common testing tools description: Install bats and python-yq runs: using: "composite" steps: - uses: actions/setup-node@v2 with: node-version: '16' - run: npm install -g bats@${BATS_VERSION} shell: bash env: BATS_VERSION: '1.8.2' - run: bats -v shell: bash - uses: actions/setup-python@v4 with: python-version: '3.10' - run: pip install yq shell: bash