Skip to content

Commit

Permalink
[TLM CI] Allow test to be ran on PR branch (#321)
Browse files Browse the repository at this point in the history
  • Loading branch information
ulya-tkch authored Sep 13, 2024
1 parent 4eef889 commit d0199df
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/ci-test-tlm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@ jobs:
- "3.11"
- "3.12"
steps:
- uses: actions/checkout@v2
- name: Check out latest commit
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.ref }}
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v2
with:
Expand Down Expand Up @@ -54,7 +57,10 @@ jobs:
python:
- "3.11"
steps:
- uses: actions/checkout@v2
- name: Check out latest commit
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.ref }}
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v2
with:
Expand Down

0 comments on commit d0199df

Please sign in to comment.