1
0
mirror of https://github.com/Zrips/Jobs.git synced 2024-11-29 05:55:27 +01:00
Jobs/.github/workflows/maven.yml

24 lines
397 B
YAML
Raw Normal View History

2019-11-13 18:46:31 +01:00
name: Java CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
2020-03-22 15:17:25 +01:00
- uses: actions/download-artifact@v1.0.0
with:
name: my-artifact
- run: cat my-artifact
2019-11-13 18:46:31 +01:00
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Build with Maven
run: mvn -B package --file pom.xml