-
Notifications
You must be signed in to change notification settings - Fork 2
161 lines (139 loc) · 4.25 KB
/
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
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
name: Build test and deploy
on:
push:
branches:
- main
- alpha
- beta
pull_request:
workflow_dispatch:
jobs:
wartremover:
name: Wartremover lint
runs-on: ubuntu-22.04
steps:
- name: Checkout current branch
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Scala
uses: actions/[email protected]
with:
distribution: 'temurin'
java-version: '17.0.4'
cache: 'sbt'
- name: Wartremover checks
run: sbt wartremoverInspect
scalafix:
name: Scalafix lint
runs-on: ubuntu-22.04
steps:
- name: Checkout current branch
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Scala
uses: actions/[email protected]
with:
distribution: 'temurin'
java-version: '17.0.4'
cache: 'sbt'
- name: Scalafix checks
run: sbt 'scalafixAll --check'
scalafmt:
name: Scalafmt lint
runs-on: ubuntu-22.04
steps:
- name: Checkout current branch
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Scala
uses: actions/[email protected]
with:
distribution: 'temurin'
java-version: '17.0.4'
cache: 'sbt'
- name: Scalafix checks
run: sbt scalafmtCheckAll
tests:
name: Run unit tests
strategy:
matrix:
os: [ubuntu-22.04]
java: ['17.0.4']
runs-on: ${{ matrix.os }}
steps:
- name: Checkout current branch
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Scala
uses: actions/[email protected]
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
cache: 'sbt'
- name: Scalatest
run: sbt test
- name: Generate coverage report
run: sbt jacocoAggregate
- name: Get scala version
id: get-scala-version
run: |
export SCALA_VERSION=`sbt --no-colors --error 'set aggregate := false; print scalaVersion'`
echo "::set-output name=scala-version::$SCALA_VERSION"
- name: Publish coverage report
if: ${{ matrix.os }} == 'ubuntu-22.04' && ${{ matrix.java-version }} == '17.0.4' # Find a better solution instead hardcoded versions
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./target/scala-${{steps.get-scala-version.outputs.scala-version}}/jacoco/report/aggregate/jacoco.xml
verbose: true
docsite:
name: Build documentation site
runs-on: ubuntu-22.04
steps:
- name: Checkout current branch
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Scala
uses: actions/[email protected]
with:
distribution: 'temurin'
java-version: '17.0.4'
cache: 'sbt'
- name: Build docsite
run: sbt ubidocGenerate
publish:
name: Publish
needs: [wartremover, scalafix, scalafmt, tests, docsite]
runs-on: ubuntu-22.04
if: github.event_name != 'pull_request' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/alpha' || github.ref == 'refs/heads/beta')
steps:
- name: Setup atedeg-bot
id: atedeg-bot
uses: tibdex/[email protected]
with:
app_id: ${{ secrets.ATEDEG_BOT_APP_ID }}
private_key: ${{ secrets.ATEDEG_BOT_PRIVATE_KEY }}
- name: Checkout current branch
uses: actions/checkout@v3
with:
token: ${{ steps.atedeg-bot.outputs.token }}
fetch-depth: 0
- name: Login to Docker Hub
uses: docker/[email protected]
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Release
uses: atedeg/[email protected]
with:
java-version: "17.0.4"
pgp-secret: ${{ secrets.PGP_SECRET }}
pgp-passphrase: ${{ secrets.PGP_PASSPHRASE }}
sonatype-username: ${{ secrets.SONATYPE_USERNAME }}
sonatype-password: ${{ secrets.SONATYPE_PASSWORD }}
github-token: ${{ steps.atedeg-bot.outputs.token }}