Skip to content

Commit 041d80f

Browse files
committed
test
1 parent 729455c commit 041d80f

File tree

4 files changed

+20
-0
lines changed

4 files changed

+20
-0
lines changed

.github/workflows/code-style.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ jobs:
2626
python-version: "3.11"
2727
activate-environment: true
2828
enable-cache: true
29+
- name: Check lock
30+
id: check-lock
31+
run: |
32+
uv lock --check
2933
- run: |
3034
bash ./tests/run_code_style.sh install
3135
bash ./tests/run_code_style.sh fmt

.github/workflows/docs.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,11 @@ jobs:
8383
activate-environment: true
8484
enable-cache: true
8585

86+
- name: Check lock
87+
id: check-lock
88+
run: |
89+
uv lock --check
90+
8691
- run: sudo npm install katex -g
8792
# - uses: actions/cache@v4
8893
# with:

.github/workflows/hvd-tests.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,11 @@ jobs:
5959
activate-environment: true
6060
enable-cache: true
6161

62+
- name: Check lock
63+
id: check-lock
64+
run: |
65+
uv lock --check
66+
6267
- name: Install dependencies
6368
shell: bash -l {0}
6469
run: |

.github/workflows/tpu-tests.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,19 @@ jobs:
3636

3737
steps:
3838
- uses: actions/checkout@v4
39+
3940
- name: Set up Python 3.10
4041
uses: astral-sh/setup-uv@v6
4142
with:
4243
python-version: "3.10"
4344
activate-environment: true
4445
enable-cache: true
4546

47+
- name: Check lock
48+
id: check-lock
49+
run: |
50+
uv lock --check
51+
4652
- name: Get year & week number
4753
id: get-date
4854
shell: bash -l {0}

0 commit comments

Comments
 (0)