Merge pull request #755 from ennru/ennru-actions-and-jdk17

CI: use GitHub actions; replace JDK11 with JDK17
This commit is contained in:
Havoc Pennington 2022-01-27 07:33:20 -05:00 committed by GitHub
commit 141b79f99b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

26
.github/workflows/ci.yml vendored Normal file
View File

@ -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