Skip to content

Commit

Permalink
update scala workflow & adjusting infludb support matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
fsanaulla committed Nov 18, 2021
1 parent eaf5333 commit e4fc664
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/scala.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
build:
strategy:
matrix:
influxdb: [1.6.5, 1.7.3]
influxdb: [1.7.3, 1.8.10]

runs-on: ubuntu-latest

Expand All @@ -20,6 +20,8 @@ jobs:
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Check formatting with Scalafmt
run: sbt scalafmtCheck
- name: Run unit tests
run: sbt test
- name: Run integration test on InfluxDB - ${{ matrix.influxdb }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ trait DockerizedInfluxDB extends ForAllTestContainer { self: Suite =>
def adminName = "admin"
def adminPassword = "password"
def influxPort = 8086
def version: String = sys.env.getOrElse("INFLUXDB_VERSION", "1.7.3")
def version: String = sys.env.getOrElse("INFLUXDB_VERSION", "1.8.10")

override val container: GenericContainer =
GenericContainer(
Expand Down
2 changes: 1 addition & 1 deletion version.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ThisBuild / version := "0.7.1"
ThisBuild / version := "0.7.2"

0 comments on commit e4fc664

Please sign in to comment.