diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4f2564b..cd75c3b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,6 +11,7 @@ env: IMAGE_NAME: ${{ github.repository }} jobs: + # Build and test the Go code go: runs-on: ubuntu-latest steps: @@ -28,6 +29,7 @@ jobs: - name: Test run: go test -v ./... + # After confirming the app builds and tests pass, build and publish docker images to ghcr docker: runs-on: ubuntu-latest needs: go