mirror of
https://github.com/ViaVersion/ViaRewind-Legacy-Support.git
synced 2025-02-15 00:51:37 +01:00
18 lines
354 B
YAML
18 lines
354 B
YAML
name: Java CI with Maven
|
|
|
|
on: [push, pull_request]
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-java@v1
|
|
with:
|
|
java-version: 11
|
|
- name: Build with Maven
|
|
run: mvn install
|
|
- uses: actions/upload-artifact@v2
|
|
with:
|
|
name: artifact
|
|
path: target
|