Skip to content

Commit 985aea2

Browse files
committed
ci: attempt fo fix CI
1 parent 0f38837 commit 985aea2

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/linters.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,15 +44,15 @@ jobs:
4444
- name: Checkout repo
4545
uses: actions/checkout@v5
4646

47-
- run: cd fs
48-
4947
- name: Install uv
5048
uses: astral-sh/setup-uv@v6
5149
with:
5250
enable-cache: true
5351

5452
- name: Install deps
53+
working-directory: fs
5554
run: uv sync --frozen
5655

5756
- name: Run MyPy
57+
working-directory: fs
5858
run: uv run mypy .

.github/workflows/ui-compile.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@ jobs:
2121
- name: Checkout repo
2222
uses: actions/checkout@v5
2323

24-
- run: cd fs
25-
2624
- name: Install uv
2725
uses: astral-sh/setup-uv@v6
2826
with:
2927
enable-cache: true
3028

3129
- name: Install deps
30+
working-directory: fs
3231
run: uv sync --frozen --no-dev
3332

3433
- name: Run pyuic
35-
run: find ./fs/src/ui/ui -type f -name *.ui -exec uv run -m PyQt6.uic.pyuic -x {} \; > /dev/null
34+
working-directory: fs
35+
run: find ./src/ui/ui -type f -name *.ui -exec uv run -m PyQt6.uic.pyuic -x {} \; > /dev/null

0 commit comments

Comments
 (0)