forked from SpongePowered/sponge-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (35 loc) · 1.01 KB
/
ci.yml
File metadata and controls
40 lines (35 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Making changes? https://github.com/nektos/act may help you test locally
name: Build with GitHub Actions
on:
push:
branches: "**"
tags-ignore: ["**"]
pull_request:
release:
types: [released]
jobs:
build:
# Only run on PRs if the source branch is on someone else's repo
if: "${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }}"
runs-on: "ubuntu-latest"
steps:
# Setup
- name: Check out
uses: actions/checkout@v2
- name: Setup JDK 16
uses: actions/setup-java@v2
with:
distribution: adopt
java-version: 16
- name: Validate Gradle wrapper
uses: gradle/wrapper-validation-action@v1
# Actually build
- name: Build with Gradle
run: ./gradlew build
- name: Archive test results
if: "${{ always() }}"
uses: actions/upload-artifact@v2
with:
name: test-results
path: |
build/reports/