diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e834e33229..b277a25957 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -47,7 +47,7 @@ jobs: - name: Docker Compose run: docker compose up -d --wait - name: Initialise database - run: ftl-initdb --recreate + run: just init-db - name: Vet SQL run: sqlc vet lint: diff --git a/.github/workflows/rebuild.yml b/.github/workflows/rebuild.yml index 49809371c0..a300bcb232 100644 --- a/.github/workflows/rebuild.yml +++ b/.github/workflows/rebuild.yml @@ -22,6 +22,6 @@ jobs: # New version of "sqlc generate" needs the DB up for some unknown reason run: docker compose up -d --wait - name: Init DB - run: ftl-initdb + run: just init-db - name: Rebuild All run: just build-all diff --git a/.github/workflows/writecache.yml b/.github/workflows/writecache.yml index a04c10dea0..4f67f8be56 100644 --- a/.github/workflows/writecache.yml +++ b/.github/workflows/writecache.yml @@ -18,9 +18,9 @@ jobs: - name: Docker Compose run: docker compose up -d --wait - name: Init DB - run: ftl-initdb + run: just init-db - name: Rebuild All - run: bit build-all + run: just build-all - name: Download Maven Dependencies run: mvn -f kotlin-runtime/ftl-runtime dependency:resolve --batch-mode - name: Download Go Dependencies