File tree 4 files changed +21
-32
lines changed
4 files changed +21
-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
+ matrix :
7
+ java : [ '8', '11', '17' ]
8
+ os : ['ubuntu-latest', 'windows-latest', 'macOS-latest']
9
+ runs-on : ${{ matrix.os }}
10
+ name : Java ${{ matrix.Java }} Build and Test (${{ matrix.os }})
11
+ steps :
12
+ - name : Checkout code
13
+ uses : actions/checkout@v4
14
+ - name : Setup java
15
+ uses : actions/setup-java@v4
16
+ with :
17
+ distribution : temurin
18
+ java-version : ${{ matrix.java }}
19
+ - name : Maven verify
20
+ 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