This repository has been archived by the owner on Sep 10, 2024. It is now read-only.
Add readme for spinning up notebooks (#53) #265
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
on: [push, pull_request] | |
name: Test | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Java | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 1.8 | |
- name: Checkout code | |
uses: actions/checkout@v1 | |
- name: Test | |
run: ./mvnw clean install |