Skip to content

Commit

Permalink
checkout moved from actions
Browse files Browse the repository at this point in the history
  • Loading branch information
jitu5 committed Apr 11, 2024
1 parent c173949 commit 407a1a0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 0 additions & 3 deletions .github/actions/setup_tests/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,6 @@ inputs:
runs:
using: "composite"
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Python ${{inputs.python-version}}
uses: actions/setup-python@v5
with:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ jobs:
# Only run on main and demo branches for Windows
if: inputs.os == 'ubuntu-latest' || ((github.ref == 'refs/heads/main' || github.ref == 'refs/heads/demo') && inputs.os == 'windows-latest')
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Setup Tests
uses: "./.github/actions/setup_tests"
with:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ jobs:
# Only run on main and demo branches for Windows
if: inputs.os == 'ubuntu-latest' || ((github.ref == 'refs/heads/main' || github.ref == 'refs/heads/demo') && inputs.os == 'windows-latest')
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Setup Tests
uses: "./.github/actions/setup_tests"
with:
Expand Down

0 comments on commit 407a1a0

Please sign in to comment.