Skip to content

Commit

Permalink
ci: Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
eed3si9n committed Jan 19, 2025
1 parent 12b7e71 commit 7f8133a
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,15 @@ jobs:
- os: ubuntu-latest
java: 8
jobtype: 1
- os: windows-latest
java: 8
jobtype: 2
- os: ubuntu-latest
java: 11
jobtype: 1
- os: ubuntu-latest
java: 11
jobtype: 2
jobtype: 3
runs-on: ${{ matrix.os }}
env:
# define Java options for both official sbt and sbt-extras
Expand All @@ -41,6 +44,11 @@ jobs:
- name: Build and test (2)
if: ${{ matrix.jobtype == 2 }}
shell: bash
run: |
sbt -v -Dfile.encoding=UTF8 "jarjar/publishLocal" "+test" "publishLocal;scripted"
- name: Build and test (3)
if: ${{ matrix.jobtype == 3 }}
shell: bash
run: |
sbt -v -Dfile.encoding=UTF8 scalafmtCheckAll
Expand Down

0 comments on commit 7f8133a

Please sign in to comment.