We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 958fea4 commit f068ac2Copy full SHA for f068ac2
.github/workflows/ci.yml
@@ -4,7 +4,7 @@ on:
4
pull_request:
5
branches: ['**']
6
push:
7
- branches: ['main']
+ branches: ['**']
8
tags: [v*]
9
# release:
10
# types: [published]
@@ -108,6 +108,9 @@ jobs:
108
# this is to fix GIT not liking owner of the checkout dir
109
chown -R $(id -u):$(id -g) $PWD
110
111
+ - name: Java version
112
+ run: java -version
113
+
114
# - uses: coursier/cache-action@v6
115
116
# - uses: actions/download-artifact@v3
build.sbt
@@ -1,7 +1,7 @@
1
name := "pdal-jni"
2
3
val scala212 = "2.12.17"
-val scala213 = "2.13.6"
+val scala213 = "2.13.7"
val scala3 = "3.2.2"
val scalaVersions = Seq(scala3, scala213, scala212)
0 commit comments