Skip to content

Commit

Permalink
Update .github/workflows/ci.yml
Browse files Browse the repository at this point in the history
Co-authored-by: eugene yokota <[email protected]>
  • Loading branch information
xuwei-k and eed3si9n authored May 6, 2024
1 parent b10f7db commit f8420b9
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,11 @@ jobs:
java-version: "${{ matrix.java }}"
cache: sbt
- if: ${{ matrix.os == 'macos-latest' }}
run: brew install sbt
run: |
mkdir -p "$HOME/bin/"
curl -sL https://raw.githubusercontent.com/sbt/sbt/v1.9.9/sbt > "$HOME/bin/sbt"
export PATH="$PATH:$HOME/bin"
chmod +x "$HOME/bin/sbt"
- name: Build and test (1)
if: ${{ matrix.jobtype == 1 }}
shell: bash
Expand Down

0 comments on commit f8420b9

Please sign in to comment.