Skip to content

Commit

Permalink
Changed docker-compose in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
hnaderi committed Aug 19, 2024
1 parent f3641aa commit af9b511
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
uses: cachix/install-nix-action@v17

- name: Start up Postgres
run: docker-compose up -d
run: docker compose up -d

- name: Check that workflows are up to date
run: 'nix develop .#${{ matrix.java }} -c sbt githubWorkflowCheck'
Expand Down
2 changes: 1 addition & 1 deletion ci.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ inThisBuild(

lazy val dockerComposeUp = Seq(
WorkflowStep.Run(
commands = List("docker-compose up -d"),
commands = List("docker compose up -d"),
name = Some("Start up Postgres")
)
)

0 comments on commit af9b511

Please sign in to comment.