Skip to content
Merged
Show file tree
Hide file tree
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
24 changes: 24 additions & 0 deletions .github/workflows/actionlint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Workflow Lint

on:
pull_request:
paths:
- ".github/workflows/**"

jobs:
actionlint:
runs-on: ubuntu-24.04
permissions:
contents: read

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Install actionlint
run: |
curl -sSL https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash \
| bash -s -- 1.7.7 /usr/local/bin

- name: Run actionlint
run: actionlint
2 changes: 1 addition & 1 deletion .github/workflows/pr-onnx-bench.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:

env:
ASSET_DIR: /home/runner/.cache/yscv-onnx-pr-bench/assets
OUT_DIR: ${{ runner.temp }}/yscv-onnx-pr-bench
OUT_DIR: /home/runner/work/_temp/yscv-onnx-pr-bench

steps:
- name: Checkout default branch
Expand Down
Loading