Skip to content

Commit

Permalink
ci: Initial draft of github actions ci
Browse files Browse the repository at this point in the history
  • Loading branch information
farmdawgnation committed Sep 19, 2024
1 parent 31102cf commit 4d414b3
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: CI
on:
pull_request:
push:
jobs:
test:
strategy:
fail-fast: false
matrix:
java: [11, 17. 21]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup JDK
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: ${{ matrix.version }}
- name: Build and Test
run: sbt test

0 comments on commit 4d414b3

Please sign in to comment.