From 8ee4e6d7d49378a673bcc6b9ee173e54ffd43b6f Mon Sep 17 00:00:00 2001 From: Hamza REMMAL Date: Thu, 23 May 2024 10:07:51 +0200 Subject: [PATCH] Add GitHub Workflow to test the launchers --- .github/workflows/launchers.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/launchers.yml diff --git a/.github/workflows/launchers.yml b/.github/workflows/launchers.yml new file mode 100644 index 000000000000..a75c99568924 --- /dev/null +++ b/.github/workflows/launchers.yml @@ -0,0 +1,13 @@ +name: Test CLI Launchers on all the platforms +on: + 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