-
-
Notifications
You must be signed in to change notification settings - Fork 215
106 lines (89 loc) · 2.93 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
# This file was automatically generated by sbt-github-actions using the
# githubWorkflowGenerate task. You should add and commit this file to
# your git repository. It goes without saying that you shouldn't edit
# this file by hand! Instead, if you wish to make changes, you should
# change your sbt build configuration to revise the workflow description
# to meet your needs, then regenerate this file.
name: Continuous Integration
on:
pull_request:
branches: ['**']
push:
branches: ['**']
tags: [SPECS2-*]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
build:
name: Build and Test
strategy:
matrix:
os: [ubuntu-latest]
scala: [3.3.3]
java: [temurin@18]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout current branch (full)
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Java (temurin@18)
if: matrix.java == 'temurin@18'
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 18
cache: sbt
- name: Setup sbt
uses: sbt/setup-sbt@v1
- name: Check formatting ✔
run: sbt '++ ${{ matrix.scala }}' scalafmtCheckAll
- name: Check that workflows are up to date
run: sbt '++ ${{ matrix.scala }}' githubWorkflowCheck
- name: Build and test 🔧
run: sbt '++ ${{ matrix.scala }}' 'testOnly -- xonly exclude ci,website timefactor 3'
publish:
name: Publish Artifacts
needs: [build]
if: github.event_name != 'pull_request' && (startsWith(github.ref, 'refs/tags/SPECS2-'))
strategy:
matrix:
os: [ubuntu-latest]
scala: [3.3.3]
java: [temurin@18]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout current branch (full)
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Java (temurin@18)
if: matrix.java == 'temurin@18'
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 18
cache: sbt
- name: Setup sbt
uses: sbt/setup-sbt@v1
- name: Check binary compatibility ✔
run: sbt mimaReportBinaryIssues
- name: Release to Sonatype 📇
env:
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }}
PGP_SECRET: ${{ secrets.PGP_SECRET }}
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
run: sbt ci-release
- name: Install Pandoc 🏁
uses: r-lib/actions/setup-pandoc@v1
with:
pandoc-version: 2.7.3
- name: Generate the specs2 website 📚
run: sbt unidoc 'guide/testOnly *Website -- xonly'
- name: Update the website 🚀
uses: JamesIves/[email protected]
with:
branch: gh-pages
clean: false
folder: target/specs2-reports/site