docs: add Ref data type #134
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: Continuous integration | |
on: push | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 # Retrieve the content of the repository | |
- uses: actions/setup-java@v3 # Set up a jdk | |
with: | |
distribution: temurin | |
java-version: 8 | |
cache: sbt # Cache the artifacts downloaded by sbt accross CI runs | |
- name: unit tests # Custom action consisting of a shell command | |
run: sbt +test |