-
Notifications
You must be signed in to change notification settings - Fork 387
43 lines (36 loc) · 1.01 KB
/
deps.yml
File metadata and controls
43 lines (36 loc) · 1.01 KB
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
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Deps CI with Maven
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
push:
branches:
- "master"
pull_request:
branches:
- "master"
paths:
- ".github/workflows/**"
- "dev/dep**"
- "**/pom.xml"
- "pom.xml"
- "tools/maven/**"
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
jdk: [ '11' ]
steps:
- uses: actions/checkout@v3
- name: Set up JDK ${{ matrix.jdk }}
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.jdk }}
distribution: 'temurin'
cache: maven
check-latest: false
- name: Maven Check dependency list
run: ./dev/dependencies.sh --check