Skip to content

Commit

Permalink
c'est le bash
Browse files Browse the repository at this point in the history
  • Loading branch information
IAlibay committed May 21, 2023
1 parent 7a799e4 commit 46462c9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/gh-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,19 +52,19 @@ jobs:
- name: check outputs
shell: bash
run: |
python utils/assert_varray.py --input ${{ fromJSON(steps.default-matrix.outputs.python-versions) }} --target '["3.9", "3.10", "3.11"]'
python utils/assert_varray.py --input ${{ toJSON(steps.default-matrix.outputs.python-versions) }} --target '["3.9", "3.10", "3.11"]'
[[ "${{ steps.default-matrix.outputs.latest-python }}" == "3.11" ]] || exit 1
[[ "${{ steps.default-matrix.outputs.stable-python }}" == "3.10" ]] || exit 1
[[ "${{ steps.default-matrix.outputs.oldest-python }}" == "3.9" ]] || exit 1
python utils/assert_varray.py --input ${{ steps.exclude-latest.outputs.python-versions }} --target '["3.9", "3.10"]'
python utils/assert_varray.py --input ${{ toJSON(steps.exclude-latest.outputs.python-versions) }} --target '["3.9", "3.10"]'
[[ "${{ steps.exclude-latest.outputs.latest-python }}" == "3.10" ]] || exit 1
[[ "${{ steps.exclude-latest.outputs.stable-python }}" == "3.9" ]] || exit 1
[[ "${{ steps.exclude-latest.outputs.oldest-python }}" == "3.9" ]] || exit 1
python utils/assert_varray.py --input ${{ steps.exclude-2-include-1.outputs.python-versions }} --target '["3.10", "3.12"]'
python utils/assert_varray.py --input ${{ toJSON(steps.exclude-2-include-1.outputs.python-versions) }} --target '["3.10", "3.12"]'
[[ "${{ steps.exclude-2-include-1.outputs.latest-python }}" == "3.12" ]] || exit 1
[[ "${{ steps.exclude-2-include-1.outputs.stable-python }}" == "3.10" ]] || exit 1
[[ "${{ steps.exclude-2-include-1.outputs.oldest-python }}" == "3.10" ]] || exit 1
python utils/assert_varray.py --input ${{ steps.release-243.outputs.python-versions }} --target '["3.8", "3.9", "3.10", "3.11"]'
python utils/assert_varray.py --input ${{ toJSON(steps.release-243.outputs.python-versions) }} --target '["3.8", "3.9", "3.10", "3.11"]'
[[ "${{ steps.release-243.outputs.latest-python }}" == "3.11" ]] || exit 1
[[ "${{ steps.release-243.outputs.stable-python }}" == "3.10" ]] || exit 1
[[ "${{ steps.release-243.outputs.oldest-python }}" == "3.8" ]] || exit 1
Expand Down

0 comments on commit 46462c9

Please sign in to comment.