We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f432c56 commit 8ca0f1eCopy full SHA for 8ca0f1e
1 file changed
.github/workflows/e2e-windows.yml
@@ -0,0 +1,30 @@
1
+# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
2
+# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
3
+
4
+name: Test
5
6
+on:
7
+ - pull_request
8
9
+jobs:
10
+ build:
11
12
+ runs-on: ubuntu-latest
13
14
+ steps:
15
+ - uses: actions/checkout@v2
16
+ - name: Set up JDK 8
17
+ uses: actions/setup-java@v2
18
+ with:
19
+ java-version: '8'
20
+ distribution: 'temurin'
21
+ cache: maven
22
+ - name: Set up Python 3.6
23
+ uses: actions/setup-python@v2
24
25
+ python-version: '3.6'
26
27
+ - name: Build with Maven
28
+ run: mvn -B package --file pom.xml
29
+ - name: Show Python version
30
+ run: python3 --version
0 commit comments