-
Notifications
You must be signed in to change notification settings - Fork 0
32 lines (32 loc) · 790 Bytes
/
Copy pathtest.yml
File metadata and controls
32 lines (32 loc) · 790 Bytes
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
name: Test
on:
push:
branches:
- main
pull_request:
jobs:
test:
name: "maven@java17"
runs-on: ubuntu-latest
permissions:
contents: read
strategy:
matrix:
showcase:
- "block-kit"
- "methods"
steps:
- name: Checkout code
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- name: Install JDK
uses: actions/setup-java@de7274f081f381c8f8158605e0321c36c376e2e6 # v6.0.1
with:
java-version: 17
distribution: "temurin"
- name: Run tests
run: |
cd "${{ matrix.showcase }}"
mvn --batch-mode spotless:check
mvn --batch-mode test -Dspotless.apply.skip