Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

- name: ShellCheck
uses: ludeeus/action-shellcheck@00cae500b08a931fb5698e11e79bfbd38e612a38 # 2.0.0

Check warning on line 26 in .github/workflows/test.yml

View workflow job for this annotation

GitHub Actions / lint

26:81 [line-length] line too long (88 > 80 characters)
with:
severity: warning

Expand All @@ -39,7 +39,7 @@
exit "$FAIL"

- name: Install uv
uses: astral-sh/setup-uv@cec208311dfd045dd5311c1add060b2062131d57 # v8.0.0
uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0

Check warning on line 42 in .github/workflows/test.yml

View workflow job for this annotation

GitHub Actions / lint

42:81 [line-length] line too long (82 > 80 characters)

- name: Validate YAML
run: |
Expand All @@ -47,7 +47,7 @@

- name: Prettier check
run: |
npx [email protected] --check "**/*.{json,yml,yaml,md}" --ignore-path .gitignore

Check warning on line 50 in .github/workflows/test.yml

View workflow job for this annotation

GitHub Actions / lint

50:81 [line-length] line too long (95 > 80 characters)

- name: Markdownlint
run: |
Expand All @@ -55,7 +55,7 @@

- name: shfmt format check
run: |
curl -fsSL https://github.com/mvdan/sh/releases/download/v3.13.0/shfmt_v3.13.0_linux_amd64 \

Check warning on line 58 in .github/workflows/test.yml

View workflow job for this annotation

GitHub Actions / lint

58:81 [line-length] line too long (102 > 80 characters)
-o /usr/local/bin/shfmt
echo "70aa99784703a8d6569bbf0b1e43e1a91906a4166bf1a79de42050a6d0de7551 /usr/local/bin/shfmt" | sha256sum -c -
chmod +x /usr/local/bin/shfmt
Expand Down Expand Up @@ -160,7 +160,7 @@

- name: Upload logs on failure
if: failure()
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: logs-scenarios-${{ matrix.group.name }}
path: /tmp/scenario-test-output.log
Expand Down Expand Up @@ -228,7 +228,7 @@

- name: Upload logs on failure
if: failure()
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: logs-amd64-${{ strategy.job-index }}
path: /tmp/test-output.log
Expand Down Expand Up @@ -294,7 +294,7 @@

- name: Upload logs on failure
if: failure()
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: logs-extended-${{ strategy.job-index }}
path: /tmp/test-output.log
Expand Down Expand Up @@ -361,7 +361,7 @@

- name: Upload logs on failure
if: failure()
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: logs-arm64-${{ strategy.job-index }}
path: /tmp/test-output.log
Expand Down
Loading