Skip to content

Commit

Permalink
ˆ
Browse files Browse the repository at this point in the history
  • Loading branch information
JavierCane committed Jun 21, 2024
1 parent a5430b3 commit 28df077
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions src/main/g8/.github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: CI

on:
push:
branches:
- main
pull_request:

permissions:
contents: read

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '21'
cache: 'sbt'
- name: 👌 Run "pre-push" tasks (compile and style-check)
run: sbt prep
- name: ✅ Run test
run: sbt test

0 comments on commit 28df077

Please sign in to comment.