Skip to content

Commit

Permalink
CI: fix step ordering API/integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
stsnel committed Mar 4, 2024
1 parent 1b03450 commit 28ba19f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/api-and-integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@ jobs:
with:
python-version: 3.8

- name: Extract branch name
shell: bash
run: echo "branch=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}" >> $GITHUB_OUTPUT
id: extract_branch

# For release branches that have a Docker setup, we use the Docker setup version of that release.
# For other branches, we use the Docker setup of the development branch.
- name: Determine Yoda repository branch
Expand All @@ -36,11 +41,6 @@ jobs:
fi
id: yoda_repo_branch

- name: Extract branch name
shell: bash
run: echo "branch=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}" >> $GITHUB_OUTPUT
id: extract_branch

- name: Install API test dependencies
run: |
pip3 install --user -r tests/requirements.txt
Expand Down

0 comments on commit 28ba19f

Please sign in to comment.