This repository has been archived by the owner on Jan 5, 2025. It is now read-only.
Fix CI due to ubuntu-latest not bundling sbt anymore #17
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Scala CI | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 1.8 | |
uses: actions/setup-java@v2 | |
with: | |
distribution: zulu | |
java-version: 8 | |
- name: Set up sbt | |
uses: sbt/setup-sbt@v1 | |
- name: Run tests | |
run: sbt test |