forked from chen-fishbein/bluetoothle-codenameone
-
Notifications
You must be signed in to change notification settings - Fork 2
34 lines (30 loc) · 765 Bytes
/
maven.yml
File metadata and controls
34 lines (30 loc) · 765 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: Build
on:
push:
branches: [ master, main ]
paths-ignore:
- 'README.md'
- 'docs/**'
- '**/*.md'
pull_request:
branches: [ master, main ]
paths-ignore:
- 'README.md'
- 'docs/**'
- '**/*.md'
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: Setup Codename One Build Client
run: |
mkdir -p ~/.codenameone
wget https://github.com/codenameone/CodenameOne/raw/refs/heads/master/maven/CodeNameOneBuildClient.jar -O ~/.codenameone/CodeNameOneBuildClient.jar
- name: Build with Maven
run: mvn install