extras/.github/workflows/main.yml

34 lines
679 B
YAML
Raw Normal View History

2021-09-03 10:49:14 -04:00
name: Maven CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
2021-10-22 22:26:55 -04:00
build:
2021-09-03 10:49:14 -04:00
runs-on: ubuntu-latest
steps:
2023-03-31 18:13:19 -04:00
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
2021-09-03 10:49:14 -04:00
with:
2021-10-22 22:26:55 -04:00
distribution: 'temurin'
2022-05-21 15:11:53 -04:00
java-version: 17
2021-09-03 10:49:14 -04:00
- name: Cache maven packages to speed up build
2023-03-31 18:13:19 -04:00
uses: actions/cache@v3
2021-09-03 10:49:14 -04:00
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
2023-03-31 18:13:19 -04:00
- uses: actions/upload-artifact@v3
2021-09-03 10:49:14 -04:00
with:
name: Extras
path: target/Extras.jar