3
0
mirror of https://github.com/Qortal/AT.git synced 2025-02-07 06:44:12 +00:00
AT/.github/workflows/maven.yml

25 lines
551 B
YAML
Raw Normal View History

2020-11-24 10:17:44 +00:00
# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Java CI with Maven
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
2020-11-24 10:21:45 +00:00
- name: Set up JDK 11
2020-11-24 10:17:44 +00:00
uses: actions/setup-java@v1
with:
2020-11-24 10:21:45 +00:00
java-version: 11
2020-11-24 10:17:44 +00:00
- name: Build with Maven
2020-11-24 10:21:45 +00:00
run: cd Java && mvn -B package --file pom.xml