Skip to content

Commit

Permalink
add gha based ci workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
marko-asplund committed Dec 17, 2023
1 parent 67b5d4a commit ba62937
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: CI
on:
pull_request:
push:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup JDK
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 8
cache: sbt
- name: Build and Test
run: sbt -v +test

0 comments on commit ba62937

Please sign in to comment.