Skip to content

Commit 8ee4e6d

Browse files
committed
Add GitHub Workflow to test the launchers
1 parent 46696d5 commit 8ee4e6d

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

Diff for: .github/workflows/launchers.yml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Test CLI Launchers on all the platforms
2+
on:
3+
workflow_dispatch:
4+
5+
jobs:
6+
linux-x64:
7+
name: Deploy and Test on Linux x64 architecture
8+
runs-on: ubuntu_latest
9+
steps:
10+
- uses: actions/checkout@v4
11+
- name: Build the launcher command
12+
run: sbt "dist-linux-x64/packArchive"
13+
- run: ./dist/linux-x64/republish/bin/scala --version

0 commit comments

Comments
 (0)