-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add GitHub Workflow to test the launchers
- Loading branch information
1 parent
46696d5
commit 863b28b
Showing
1 changed file
with
14 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
name: Test CLI Launchers on all the platforms | ||
on: | ||
push: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
linux-x64: | ||
name: Deploy and Test on Linux x64 architecture | ||
runs-on: ubuntu_latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Build the launcher command | ||
run: sbt "dist-linux-x64/packArchive" | ||
- run: ./dist/linux-x64/republish/bin/scala --version |