Skip to content

Commit 12a87fd

Browse files
committed
Action: Use cd instead of working-directory
1 parent 22cfa4d commit 12a87fd

3 files changed

Lines changed: 6 additions & 4 deletions

File tree

action.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,11 @@ runs:
6060
using: "composite"
6161
steps:
6262
- name: Init submodules
63-
run: git submodule update --init --recursive
6463
shell: bash
65-
working-directory: $GITHUB_ACTION_PATH
64+
run: |
65+
set -e
66+
cd "$GITHUB_ACTION_PATH"
67+
git submodule update --init --recursive
6668
6769
- name: Install uv
6870
uses: astral-sh/setup-uv@v6

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "partdiff_tester"
3-
version = "0.1.5"
3+
version = "0.1.6"
44
description = "Correctness checker for partdiff"
55
readme = "README.md"
66
requires-python = ">=3.13"

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)