Skip to content

Commit 02f7616

Browse files
committed
test: add manual smoke-test workflow for the composite action
1 parent 5311c34 commit 02f7616

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

.github/workflows/test_action.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Test Action
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
smoke-test:
8+
name: Run action (${{ matrix.os }})
9+
runs-on: ${{ matrix.os }}
10+
strategy:
11+
fail-fast: false
12+
matrix:
13+
os: [ubuntu-latest, ubuntu-24.04-arm, macos-13, macos-latest, windows-latest]
14+
steps:
15+
- uses: actions/checkout@v7
16+
- name: Run embd action
17+
uses: ./
18+
with:
19+
version: v0.1.0
20+
args: status

0 commit comments

Comments
 (0)