Skip to content

Commit

Permalink
add github actions to compile kernel
Browse files Browse the repository at this point in the history
  • Loading branch information
allisonport-db committed May 23, 2023
1 parent f5c8f04 commit 019a228
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/kernel_test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: "Delta Kernel Tests"
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-20.04
env:
SCALA_VERSION: 2.12.15
steps:
- uses: actions/checkout@v3
- name: install java
uses: actions/setup-java@v3
with:
distribution: "zulu"
java-version: "8"
- name: Compile code # TODO: run tests later on
run: cd kernel && build/sbt compile

0 comments on commit 019a228

Please sign in to comment.