Skip to content

Commit

Permalink
Run right package installer.
Browse files Browse the repository at this point in the history
  • Loading branch information
quelgar committed Jan 19, 2024
1 parent 45df274 commit f940409
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/scala.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,20 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Install libuv
run: sudo apt-get install libuv1-dev
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
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
java-version: '21'
distribution: 'temurin'
cache: 'sbt'
- name: Check directory
run: pwd && ls -la src/test/resources
- name: Run tests
run: sbt test
# Optional: This step uploads information to the GitHub dependency graph and unblocking Dependabot alerts for the repository
Expand Down

0 comments on commit f940409

Please sign in to comment.