github action test
This commit is contained in:
15
.github/workflows/github-actions-test.yml
vendored
Normal file
15
.github/workflows/github-actions-test.yml
vendored
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
name: Maven Test
|
||||||
|
on: [push]
|
||||||
|
jobs:
|
||||||
|
run_tests:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
- name: Set up JDK 11
|
||||||
|
uses: actions/setup-java@v2
|
||||||
|
with:
|
||||||
|
java-version: '11'
|
||||||
|
distribution: 'adopt'
|
||||||
|
- name: Run tests with Maen
|
||||||
|
run: mvn -B test
|
||||||
Reference in New Issue
Block a user