Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
ulya-tkch authored Sep 13, 2024
1 parent 4eef889 commit 2106aba
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/ci-test-tlm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,11 @@ jobs:
- "3.11"
- "3.12"
steps:
- uses: actions/checkout@v2
- name: Check out latest commit
if: ${{ github.event.issue.pull_request }}
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 +58,11 @@ jobs:
python:
- "3.11"
steps:
- uses: actions/checkout@v2
- name: Check out latest commit
if: ${{ github.event.issue.pull_request }}
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
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ jobs:
name: Type check
runs-on: ubuntu-latest
steps:
- name: Check out latest commit
if: ${{ github.event.issue.pull_request }}
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.ref }}
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
Expand Down

0 comments on commit 2106aba

Please sign in to comment.