-
Notifications
You must be signed in to change notification settings - Fork 0
65 lines (62 loc) · 1.81 KB
/
github-actions-demo.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
name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
name: "${{ matrix.root-pom }} on JDK ${{ matrix.java }}"
strategy:
matrix:
java: [ 11 ]
root-pom: [ 'pom.xml' ]
runs-on: ubuntu-latest
env:
ROOT_POM: ${{ matrix.root-pom }}
steps:
- uses: actions/checkout@v3
# Cancel any previous runs for the same branch that are still running.
- name: 'Cancel previous runs'
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
- name: 'Set up JDK ${{ matrix.java }}'
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java }}
distribution: 'zulu'
- name: Checkstyle for Java
uses: dbelyaev/[email protected]
with:
github_token: ${{ github.token }}
workdir: . # optional, default is .
level: info # optional, default is info
server-username: CI_DEPLOY_USERNAME
server-password: CI_DEPLOY_PASSWORD
generate_docs:
name: 'Generate latest docs'
needs: test
if: github.event_name == 'push' && github.repository == 'google/guava'
runs-on: ubuntu-latest
steps:
- name: 'Check out repository'
uses: actions/[email protected]
- name: 'Cache local Maven repository'
uses: actions/[email protected]
with:
path: ~/.m2/repository
key: maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
maven-
- name: 'Set up JDK 11'
uses: actions/setup-java@v3
with:
java-version: 11
distribution: 'zulu'
- name: 'Generate latest docs'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: ./util/update_snapshot_docs.sh