Skip to content

Commit d7d57d3

Browse files
committed
Add smoke-test workflow
1 parent bf09e23 commit d7d57d3

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/smoke-test.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Smoke Test
2+
3+
on:
4+
release:
5+
types:
6+
- "created"
7+
workflow_dispatch:
8+
9+
jobs:
10+
smoke-test:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: gaggle/elixir_script@v0
14+
id: script
15+
with:
16+
script: |
17+
IO.puts("Hello world")
18+
"return"
19+
20+
- name: Get result
21+
run: echo "${{steps.script.outputs.result}}"

0 commit comments

Comments
 (0)