Skip to content

Commit

Permalink
use docker compose
Browse files Browse the repository at this point in the history
  • Loading branch information
chriskapp committed Nov 10, 2024
1 parent 6aad045 commit b484476
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
env:
FORMAT: csharp
CONFIG: "namespace=Generator"
run: cd ../../ && docker-compose up
run: cd ../../ && docker compose up
- name: Move
run: mv ../../output/*.cs .
- name: Install dependencies
Expand All @@ -44,7 +44,7 @@ jobs:
env:
FORMAT: go
CONFIG: "namespace=main"
run: cd ../../ && docker-compose up
run: cd ../../ && docker compose up
- name: Move
run: mv ../../output/*.go .
- name: Build
Expand All @@ -68,7 +68,7 @@ jobs:
env:
FORMAT: java
CONFIG: "namespace=org.typeschema.generator"
run: cd ../../ && docker-compose up
run: cd ../../ && docker compose up
- name: Move
run: mv ../../output/*.java .
- name: Build with Maven
Expand All @@ -93,7 +93,7 @@ jobs:
env:
FORMAT: php
CONFIG: "namespace=Generator"
run: cd ../../ && docker-compose up
run: cd ../../ && docker compose up
- name: Move
run: mv ../../output/*.php .
- name: Composer install
Expand All @@ -116,7 +116,7 @@ jobs:
env:
FORMAT: python
CONFIG:
run: cd ../../ && docker-compose up
run: cd ../../ && docker compose up
- name: Move
run: mv ../../output/*.py .
- name: Install dependencies
Expand Down Expand Up @@ -147,7 +147,7 @@ jobs:
env:
FORMAT: rust
CONFIG:
run: cd ../../ && docker-compose up
run: cd ../../ && docker compose up
- name: Move
run: mv ../../output/*.rs .
- run: cargo run
Expand All @@ -167,7 +167,7 @@ jobs:
env:
FORMAT: typescript
CONFIG:
run: cd ../../ && docker-compose up
run: cd ../../ && docker compose up
- name: Move
run: mv ../../output/*.ts .
- run: npm i
Expand All @@ -189,7 +189,7 @@ jobs:
env:
FORMAT: visualbasic
CONFIG:
run: cd ../../ && docker-compose up
run: cd ../../ && docker compose up
- name: Move
run: mv ../../output/*.vb .
- name: Install dependencies
Expand Down

0 comments on commit b484476

Please sign in to comment.