commandspy/.github/workflows/main.yml

34 lines
687 B
YAML
Raw Normal View History

2021-09-03 11:53:48 -03:00
name: Maven CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
2021-10-23 05:03:15 +03:00
build:
2021-09-03 11:53:48 -03:00
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
2021-10-23 05:11:54 +03:00
- uses: actions/setup-java@v2
2021-09-03 11:53:48 -03:00
with:
2021-10-23 05:03:15 +03:00
distribution: 'temurin'
2022-10-31 00:14:34 +02:00
java-version: 17
2021-09-03 11:53:48 -03:00
- name: Cache maven packages to speed up build
uses: actions/cache@v1
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Build with Maven
run: mvn -B package --file pom.xml
- uses: actions/upload-artifact@v1
with:
name: CommandSpy
path: target/CommandSpy.jar