-
Notifications
You must be signed in to change notification settings - Fork 0
43 lines (36 loc) · 1.03 KB
/
spotbugs-analysis.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
name: "Spotbugs"
on:
push:
branches: [ master ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ master ]
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 256
- name: Cache
uses: actions/cache@v4
with:
path: |
~/.ivy2/cache/
~/work/josm/josm/tools/
key: ${{ runner.os }}-ivy2-${{ hashFiles('build.xml', 'ivy.xml', 'tools/ivy.xml') }}
- name: Run Spotbugs with Ant
run: |
ant spotbugs
- name: Upload report
uses: actions/upload-artifact@v4
with:
path: spotbugs-josm.xml
# Disable step, always failing with error message
# TypeError: Cannot read property 'sourcepath' of undefined
# see https://github.com/jwgmeligmeyling/spotbugs-github-action/issues/15
#- uses: jwgmeligmeyling/spotbugs-github-action@master
# with:
# path: '**/spotbugs-josm.xml'