Skip to content

Commit

Permalink
Merge pull request #755 from ennru/ennru-actions-and-jdk17
Browse files Browse the repository at this point in the history
CI: use GitHub actions; replace JDK11 with JDK17
  • Loading branch information
havocp committed Jan 27, 2022
2 parents 6aa24bb + f85ecd6 commit 141b79f
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: CI
on:
pull_request:
push:
jobs:
test:
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-latest
java: 8
- os: windows-latest
java: 17
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup JDK
uses: actions/setup-java@v2
with:
distribution: temurin
java-version: ${{ matrix.java }}
- name: Build and test
shell: bash
run: sbt -v +test +doc

0 comments on commit 141b79f

Please sign in to comment.