Skip to content

Commit

Permalink
Add basic CI with GitHub Action (#820)
Browse files Browse the repository at this point in the history
  • Loading branch information
arteymix authored Sep 7, 2023
1 parent 9ccaee3 commit 97c2e24
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Build Gemma

on: [push]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 1.8
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: '8'
- name: Build with Maven
run: mvn -B package -DexcludedGroups=SlowTest

0 comments on commit 97c2e24

Please sign in to comment.