Skip to content

Commit

Permalink
fix: speed up integration tests with more caching
Browse files Browse the repository at this point in the history
  • Loading branch information
alecthomas committed Aug 7, 2023
1 parent 70565f6 commit 8f89a54
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,24 @@ jobs:
uses: actions/checkout@v3
- name: Init Hermit
uses: cashapp/activate-hermit@v1
- name: Cache Go Modules
id: cache-go-modules
uses: actions/cache@v3
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go
- name: Build Kotlin Echo
uses: gradle/gradle-build-action@v2
with:
arguments: build
build-root-directory: examples/echo-kotlin
gradle-executable: ${{ github.workspace }}/bin/gradle
- name: Build Kotlin Runtime
uses: gradle/gradle-build-action@v2
with:
arguments: build
build-root-directory: kotlin-runtime/ftl-runtime
gradle-executable: ${{ github.workspace }}/bin/gradle
- name: Docker Compose
run: docker compose up -d --wait
- name: Integration tests
Expand Down

0 comments on commit 8f89a54

Please sign in to comment.