Skip to content

Commit

Permalink
fix(workflows/test): Fix using matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
tparsa committed Oct 1, 2023
1 parent 0d71de8 commit 425c1f9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ jobs:
- name: Start containers
run: docker-compose -f "deployment/docker-compose.yml" up -d --build
env:
OS: ${{os}}
OS_VERSION: ${{os_version}}
POSTGRES_VERSION: ${{postgres_version}}
OS: ${{matrix.os}}
OS_VERSION: ${{matrix.os_version}}
POSTGRES_VERSION: ${{matrix.postgres_version}}

- name: Sleep so containers are ready
run: sleep 15
Expand Down

0 comments on commit 425c1f9

Please sign in to comment.