File tree Expand file tree Collapse file tree 2 files changed +23
-3
lines changed Expand file tree Collapse file tree 2 files changed +23
-3
lines changed Original file line number Diff line number Diff line change 1
- name : CASE Validate
1
+ name : Build Jobs
2
2
3
3
on : [ push ]
4
4
@@ -76,11 +76,11 @@ jobs:
76
76
# Build the project
77
77
- name : Build Project
78
78
run : mvn compile assembly:single
79
- working-directory : ./java/
79
+ working-directory : ./java/case2geo/
80
80
81
81
# Run the Java CASE conversion example
82
82
- name : Run CASE Conversion
83
83
run : |
84
84
java -jar ./target/case2geo-0.1.0.jar ../../data/geo.json ../../output/java.geojson
85
85
cat ../output/java.geojson
86
- working-directory : ./java/
86
+ working-directory : ./java/case2geo/
Original file line number Diff line number Diff line change
1
+ name : Lint
2
+
3
+ on : [ push ]
4
+
5
+ # Build all of the projects and run them against the CASE graph
6
+
7
+ jobs :
8
+ lint :
9
+ runs-on : ubuntu-latest
10
+ steps :
11
+
12
+ # Get the code from the repository
13
+ - name : Get Repo
14
+ uses : actions/checkout@v3
15
+
16
+ # Install pre-commit and run it
17
+ - name : Pre-commit Checks
18
+ run : |
19
+ pip -q install pre-commit
20
+ pre-commit run --all-files
You can’t perform that action at this time.
0 commit comments