Skip to content

Commit 8ca0f1e

Browse files
committed
start porting CI workflows to Github Actions
1 parent f432c56 commit 8ca0f1e

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

.github/workflows/e2e-windows.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
with:
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

Comments
 (0)