forked from locationtech/jts
-
Notifications
You must be signed in to change notification settings - Fork 0
34 lines (29 loc) · 901 Bytes
/
Copy pathbuild-and-test.yml
File metadata and controls
34 lines (29 loc) · 901 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: GitHub CI
on: [push, pull_request]
jobs:
naming-guard:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Forbid 'Curved' stem (use 'Curve' -- see RENAME_CONTRACT.md)
run: bash dev/check-no-curved.sh
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build with Maven
run: mvn clean install
- name: Remove JTS artifacts from cache
run: |
find . -name '*.tar.gz' -exec rm {} \;
rm -rf $HOME/.m2/repository/org/locationtech/jts