Skip to content
Closed
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
6 changes: 5 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ inputs:
description: Working directory to run the action.
required: false
default: .
architecture:
description: CPU architecture (x86_64 or aarch64)
required: false
default: x86_64
outputs:
paths:
description: Paths of test files to run.
Expand All @@ -25,7 +29,7 @@ runs:
using: composite
steps:
- run: |
curl -L --output split-test https://github.com/mtsmfm/split-test/releases/download/v1.1.0/split-test-x86_64-unknown-linux-gnu
curl -L --output split-test https://github.com/mtsmfm/split-test/releases/download/v1.1.0/split-test-${{ inputs.architecture }}-unknown-linux-gnu
chmod +x split-test
shell: bash
working-directory: ${{ inputs.working-directory }}
Expand Down