ソースを参照

Merge remote-tracking branch 'origin/master'

Jason Rivard 4 年 前
コミット
7c849c94b7
1 ファイル変更18 行追加0 行削除
  1. 18 0
      .github/workflows/maven.yml

+ 18 - 0
.github/workflows/maven.yml

@@ -0,0 +1,18 @@
+name: Build/Verify PWM
+
+on: [ push, pull_request ]
+
+jobs:
+  build:
+
+    runs-on: ubuntu-latest
+
+    steps:
+    - uses: actions/checkout@v2
+    - name: Set up JDK 11
+      uses: actions/setup-java@v2
+      with:
+        java-version: '11'
+        distribution: 'adopt'
+    - name: Build with Maven
+      run: mvn -B verify --file pom.xml