Skip to content

Commit b5ddb2d

Browse files
committed
Activate github actions
1 parent ea9121b commit b5ddb2d

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/build.yaml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Build Plugin
2+
on: [ push, pull_request ]
3+
jobs:
4+
build:
5+
runs-on: ubuntu-latest
6+
strategy:
7+
fail-fast: true
8+
matrix:
9+
jdk: [ 11 ]
10+
steps:
11+
- uses: actions/checkout@v2
12+
- uses: actions/setup-java@v2
13+
with:
14+
java-version: ${{ matrix.jdk }}
15+
distribution: temurin
16+
- uses: eskatos/gradle-command-action@v1
17+
with:
18+
arguments: :build

0 commit comments

Comments
 (0)