-
Notifications
You must be signed in to change notification settings - Fork 145
72 lines (55 loc) · 1.74 KB
/
build.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
name: Build
on:
push:
branches: [master]
tags: ["*"]
pull_request:
branches: [master]
permissions:
contents: write
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
java: [8, 11, 17] # Include _only_ LTS Java versions in matrix: https://www.oracle.com/java/technologies/java-se-support-roadmap.html
runs-on: ${{matrix.os}}
continue-on-error: ${{matrix.os == 'windows-latest'}}
steps:
- uses: actions/checkout@v3
- name: Set up JDK ${{matrix.java}}
uses: olafurpg/setup-scala@v13
with:
java-version: ${{matrix.java}}
- name: Cache scala dependencies
uses: coursier/cache-action@v6
- name: Unit test
run: sbt +test
# Adapted from https://github.com/sbt/sbt-ci-release/blob/main/.github/workflows/release.yml
publish:
runs-on: ubuntu-latest
needs: test
if: github.ref == 'refs/heads/master'
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: olafurpg/setup-scala@v13
- name: Release
run: sbt ci-release
env:
PGP_PASSPHRASE: ${{secrets.PGP_PASSPHRASE}}
PGP_SECRET: ${{secrets.PGP_SECRET}}
SONATYPE_PASSWORD: ${{secrets.SONATYPE_PASSWORD}}
SONATYPE_USERNAME: ${{secrets.SONATYPE_USERNAME}}
- name: Generate scaladoc
run: sbt +makeSite
- name: Generate coverage reports
run: sbt coverage test coverageReport coverageAggregate
- name: Upload coverage reports
uses: codecov/codecov-action@v3
- name: Publish Github Pages
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: target/site