Skip to content

Commit 887035b

Browse files
committed
Ensure that the docker build works in CI
We had failing CI release jobs because the docker build was no longer working. This extra step should make sure that the Docker build doesn't regress in the future.
1 parent 7a13eb5 commit 887035b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ jobs:
1818
- uses: actions/checkout@v2
1919
- uses: actions/setup-java@v3
2020
with:
21-
distribution: 'temurin'
22-
cache: 'sbt'
21+
distribution: "temurin"
22+
cache: "sbt"
2323
java-version: ${{ matrix.java }}
2424
- run: sbt test
2525
bazel:
@@ -42,7 +42,7 @@ jobs:
4242
- uses: actions/checkout@v2
4343
- uses: actions/setup-java@v3
4444
with:
45-
distribution: 'temurin'
45+
distribution: "temurin"
4646
java-version: 17
47-
cache: 'sbt'
48-
- run: sbt checkAll
47+
cache: "sbt"
48+
- run: sbt checkAll cli/docker

0 commit comments

Comments
 (0)