Update #165
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
# Copyright (C) 2023 Alan Jian ([email protected]) | |
# SPDX-License-Identifier: MIT | |
name: Test CI | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install the JVM | |
run: | | |
sudo apt-get update | |
sudo apt-get install default-jdk | |
- name: Test | |
run: sbt test |