Skip to content

Commit 3776d89

Browse files
committed
Fix ci for local workflow calls
1 parent 0683c24 commit 3776d89

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ jobs:
3434
run: pip install pytest
3535

3636
- name: Build project
37-
working-directory: ${{ inputs.working-directory }}
37+
working-directory: ${{ inputs.working-directory || '.' }}
3838
run: make
3939

4040
- name: Run tests
41-
working-directory: ${{ inputs.working-directory }}/src/test
41+
working-directory: ${{ inputs.working-directory || '.' }}/src/test
4242
run: pytest

0 commit comments

Comments
 (0)