Skip to content

Commit

Permalink
build: as a part of continuous integration, try building the Docker i…
Browse files Browse the repository at this point in the history
…mage, to help ensure it keeps on working
  • Loading branch information
madsboddum committed Aug 18, 2023
1 parent 81d0883 commit 60820b3
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/verify.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Gradle Test
name: Test

on:
pull_request:
Expand All @@ -9,7 +9,7 @@ on:
- cu_quality_assurance

jobs:
test:
test_code:

runs-on: ubuntu-latest

Expand All @@ -23,3 +23,14 @@ jobs:
java-version: 18
- name: Test with Gradle
run: ./gradlew --no-daemon test

test_docker_build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
with:
submodules: true
- run: |
docker build .

0 comments on commit 60820b3

Please sign in to comment.