Skip to content

Commit

Permalink
Added ci.yml for CI build.
Browse files Browse the repository at this point in the history
  • Loading branch information
cheeseng committed Jul 15, 2024
1 parent ced778b commit 4103e11
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: CI

on: [push, pull_request]

jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup JDK
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 8
- name: Build and Test
run: sbt -v +test

0 comments on commit 4103e11

Please sign in to comment.