Skip to content

Commit 9480bce

Browse files
authored
Create CI.yml
1 parent d6a4236 commit 9480bce

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/CI.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
7+
jobs:
8+
build_and_push:
9+
runs-on: ubuntu-latest
10+
permissions:
11+
contents: read
12+
13+
steps:
14+
- name: Checkout repository
15+
uses: actions/checkout@v4
16+
- uses: coursier/cache-action@v6
17+
- uses: coursier/setup-action@v1
18+
with:
19+
jvm: temurin:21
20+
apps: sbt bloop sbtn
21+
22+
- name: compile
23+
run: sbt compile

0 commit comments

Comments
 (0)