add workflows
This commit is contained in:
parent
4018f40795
commit
a13e92c281
2 changed files with 48 additions and 0 deletions
36
.github/workflows/build.yml
vendored
Normal file
36
.github/workflows/build.yml
vendored
Normal file
|
@ -0,0 +1,36 @@
|
|||
name: "build"
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: "**"
|
||||
tags-ignore: ["**"]
|
||||
pull_request:
|
||||
|
||||
concurrency:
|
||||
group: "${{ github.workflow }}-${{ github.event.number || github.ref }}"
|
||||
cancel-in-progress: true
|
||||
|
||||
env:
|
||||
RUNTIME_VERSION: 17
|
||||
|
||||
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 }}"
|
||||
strategy:
|
||||
matrix:
|
||||
os: ["ubuntu-latest", "windows-latest"]
|
||||
runs-on: "${{ matrix.os }}"
|
||||
steps:
|
||||
- name: "checkout repository"
|
||||
uses: actions/checkout@v3
|
||||
- name: "setup jdk ${{ env.RUNTIME_VERSION }}"
|
||||
uses: actions/setup-java@v3
|
||||
with:
|
||||
distribution: "temurin"
|
||||
java-version: "${{ env.RUNTIME_VERSION }}"
|
||||
- name: "run gradle build"
|
||||
uses: "gradle/gradle-build-action@v2"
|
||||
with:
|
||||
cache-read-only: "${{ github.ref != 'refs/heads/main' || github.event_name == 'pull_request' }}"
|
||||
arguments: "build"
|
12
.github/workflows/validate.yml
vendored
Normal file
12
.github/workflows/validate.yml
vendored
Normal file
|
@ -0,0 +1,12 @@
|
|||
name: "validate gradle wrapper"
|
||||
|
||||
on: ["pull_request", "push"]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: "ubuntu-latest"
|
||||
steps:
|
||||
- name: "checkout repository"
|
||||
uses: actions/checkout@v3
|
||||
- name: "validate gradle wrapper"
|
||||
uses: "gradle/wrapper-validation-action@v1"
|
Loading…
Reference in a new issue