forked from srikanth-lingala/zip4j
-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (34 loc) · 867 Bytes
/
maven.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
name: Verify Build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test-on-ubuntu:
name: Run zip4j tests on ubuntu
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
java-version: '11'
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: mvn -B clean verify --file pom.xml
test-on-windows:
name: Run zip4j tests on Windows
runs-on: windows-latest
if: ${{ false }}
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
java-version: '11'
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: mvn -B -Pskip-slow-tests clean verify --file pom.xml