Skip to content

Commit

Permalink
fix github action
Browse files Browse the repository at this point in the history
  • Loading branch information
quelgar committed Jan 19, 2024
1 parent ace73e3 commit 1594031
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions .github/workflows/scala.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,16 @@ jobs:
- name: Install libuv
shell: bash
run: |
if [ "$RUNNER-OS" == "Linux" ]; then
sudo apt-get install --yes libuv1-dev
elif [ "$RUNNER-OS" == "macOS" ]; then
brew install libuv
elif [ "$RUNNER-OS" == "Windows" ]; then
choco install libuv
fi
if [ "$RUNNER_OS" == "Linux" ]; then
apt install --yes libuv1-dev
elif [ "$RUNNER_OS" == "macOS" ]; then
brew install libuv
elif [ "$RUNNER_OS" == "Windows" ]; then
choco install libuv
else
echo "Unknown OS"
exit 1
fi
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
Expand Down

0 comments on commit 1594031

Please sign in to comment.