Skip to content

Commit

Permalink
Add CI yaml file.
Browse files Browse the repository at this point in the history
  • Loading branch information
ccromjongh committed Jan 24, 2024
1 parent 198892e commit 1ad178e
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: CI
on:
push:
branches: ["main"]
tags: ["v*"]
pull_request:
branches: ["*"]

jobs:
build:
strategy:
fail-fast: false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0

- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
cache: 'sbt'

- name: Test
run: sbt --client ci

- name: Test publishing
run: sbt --client publishLocal

0 comments on commit 1ad178e

Please sign in to comment.