Skip to content

Commit 7e39850

Browse files
committed
ci: fix github workflow
1 parent ae78906 commit 7e39850

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

.github/workflows/static-analysis.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,17 @@ jobs:
1111
- "3.8"
1212
steps:
1313
- uses: actions/checkout@v4
14+
with:
15+
submodules: recursive
1416

1517
- name: Install uv
1618
uses: astral-sh/setup-uv@v5
1719
with:
1820
python-version: ${{ matrix.python-version }}
1921

2022
- name: Install the project
21-
run: uv sync --only-group=dev
23+
run: |
24+
uv sync --only-group=dev
2225
2326
- name: Run static analysis
2427
run: make static-analysis

.github/workflows/static-gh-pages.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ jobs:
1010
name: publish documentation
1111
steps:
1212
- uses: actions/checkout@v4
13+
with:
14+
submodules: recursive
15+
1316
- name: Install uv
1417
uses: astral-sh/setup-uv@v5
1518
with:

.github/workflows/static-test-install.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,10 @@ jobs:
66
runs-on: ubuntu-latest
77
name: basic install of compressai-vision (torch cpu)
88
steps:
9-
- uses: actions/checkout@v2
9+
- uses: actions/checkout@v4
1010
with:
1111
submodules: recursive
12+
1213
- name: Setup Python
1314
uses: actions/setup-python@v2
1415
with:

0 commit comments

Comments
 (0)