Skip to content

Commit

Permalink
Bump actions/checkout to latest version (#42)
Browse files Browse the repository at this point in the history
* Bump actions/checkout to latest version

This commit bumps the actions/checkout version used in the custom neko
action.

* Use set -e on run commands to cause job failure on intermediate steps
  • Loading branch information
mtreinish authored Feb 23, 2024
1 parent 336bd34 commit f8629af
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ runs:
using: "composite"
steps:
- name: Clone Qiskit/qiskit-neko PUBLIC repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: Qiskit/qiskit-neko
path: qiskit-neko
Expand All @@ -26,11 +26,12 @@ runs:
pip install ./qiskit-neko
shell: bash
- name: Checkout base repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: repo_under_test
- name: Install repo under test
run: |
set -e
pushd repo_under_test
${{ inputs.repo_install_command }}
popd
Expand All @@ -39,6 +40,7 @@ runs:
env:
PYTHONWARNINGS: default
run: |
set -e
cd qiskit-neko
stestr run ${{ inputs.test_selection }}
shell: bash

0 comments on commit f8629af

Please sign in to comment.