-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (39 loc) · 1009 Bytes
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: CI
on:
push:
branches:
- development
pull_request:
branches:
- development
jobs:
ci-matrix:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
java: [ '[email protected]' ]
steps:
- uses: actions/[email protected]
with:
fetch-depth: 100
- uses: olafurpg/setup-scala@v14
with:
java-version: ${{ matrix.java }}
# - name: Coursier cache
# uses: coursier/cache-action@v6
- name: sbt ci ${{ github.ref }}
run: sbt -mem 2048 ci
# - name: Log in to Docker Hub
# uses: docker/login-action@v2
# with:
# username: ${{ secrets.RENKU_DOCKER_USERNAME }}
# password: ${{ secrets.RENKU_DOCKER_PASSWORD }}
# - name: sbt docker:publishLocal
# run: sbt -mem 2048 cli/Docker/publishLocal
ci:
runs-on: ubuntu-latest
needs: [ci-matrix]
steps:
- name: Aggregate of lint, and all tests
run: echo "ci passed"