-
Notifications
You must be signed in to change notification settings - Fork 10
62 lines (51 loc) · 1.62 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
name: Continuous Integration
on:
pull_request:
branches: ["*"]
push:
branches: ["main"]
tags: ["v*"]
workflow_dispatch:
inputs:
publishSnapshot:
description: "Publish Snapshot"
required: false
default: "false"
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
build:
name: Build and Test
runs-on: ubuntu-latest
steps:
- name: Checkout current branch (full)
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Java
uses: actions/setup-java@v2
with:
distribution: adopt
java-version: 11
- name: Check formatting
run: ./mill -k --disable-ticker __.checkFormat
- name: Check headers
run: ./mill -k --disable-ticker __.headerCheck
- name: Compile
run: ./mill -k --disable-ticker __.compile
- name: Run tests
run: ./mill -k --disable-ticker __.test
- name: Check Bincompat
run: ./mill -k --disable-ticker __.mimaReportBinaryIssues
- name: Publish ${{ github.ref }}
if: startsWith(github.ref, 'refs/tags/v') ||
(github.event_name == 'workflow_dispatch' && github.event.inputs.publishSnapshot == 'true')
run: ./mill -i io.kipp.mill.ci.release.ReleaseModule/publishAll
env:
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }}
PGP_SECRET: ${{ secrets.PGP_SECRET }}
SONATYPE_PASSWORD: ${{ secrets.S01_SONATYPE_PASSWORD }}
SONATYPE_USERNAME: ${{ secrets.S01_SONATYPE_USERNAME }}