BowDogPrediction/.github/workflows/pull_request.yml

20 lines
435 B
YAML
Raw Normal View History

name: Build Pull Request
on: pull_request
2021-06-15 14:33:53 +00:00
jobs:
build:
2021-09-01 12:08:30 +00:00
runs-on: ubuntu-latest
2021-06-15 14:33:53 +00:00
steps:
2021-09-01 12:07:39 +00:00
- uses: actions/checkout@v2
- uses: actions/setup-java@v2
2021-06-15 14:33:53 +00:00
with:
java-version: 16
distribution: adopt
- name: Build
2021-09-01 12:08:30 +00:00
run: ./gradlew build
2021-08-31 14:50:17 +00:00
- name: Upload artifacts
uses: actions/upload-artifact@v2.2.4
with:
name: build-artifacts
path: build/libs