File tree 4 files changed +22
-32
lines changed
4 files changed +22
-32
lines changed Original file line number Diff line number Diff line change
1
+ name : Build and Test
2
+ on : [push, pull_request]
3
+ jobs :
4
+ build :
5
+ strategy :
6
+ fail-fast : false
7
+ matrix :
8
+ java : [ '8', '11', '17' ]
9
+ os : ['ubuntu-latest', 'windows-latest', 'macOS-latest']
10
+ runs-on : ${{ matrix.os }}
11
+ name : Java ${{ matrix.Java }} Build and Test (${{ matrix.os }})
12
+ steps :
13
+ - name : Checkout code
14
+ uses : actions/checkout@v4
15
+ - name : Setup java
16
+ uses : actions/setup-java@v4
17
+ with :
18
+ distribution : temurin
19
+ java-version : ${{ matrix.java }}
20
+ - name : Maven verify
21
+ run : mvn -V -B verify
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
- [ ![ Build Status] ( https://travis-ci.com/expath/expath-pkg-java.png?branch=master )] ( https://travis-ci.com/expath/expath-pkg-java )
2
- [ ![ Build status] ( https://ci.appveyor.com/api/projects/status/jb816i3e4fh8wob3/branch/master?svg=true )] ( https://ci.appveyor.com/project/AdamRetter/expath-pkg-java/branch/master )
1
+ [ ![ Build Status] ( https://github.com/expath/expath-pkg-java/actions/workflows/ci.yml/badge.svg?branch=main )] ( https://github.com/expath/expath-pkg-java/actions/workflows/ci.yml )
3
2
[ ![ Maven Central] ( https://img.shields.io/maven-central/v/org.expath.packaging/pkg.svg?label=Maven%20Central )] ( https://search.maven.org/search?q=g:%22org.expath.packaging%22%20AND%20a:%22pkg%22 )
4
3
[ ![ License] ( https://img.shields.io/badge/license-MPL%201.0-blue.svg )] ( https://opensource.org/licenses/MPL-1.0 )
5
4
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments