We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfbc60f commit ed404b5Copy full SHA for ed404b5
1 file changed
.github/workflows/ci.yml
@@ -1,8 +1,9 @@
1
name: ci
2
3
on:
4
- push:
5
- workflow_dispatch:
+ - push
+ - workflow_dispatch
6
+ - pull_request
7
8
env:
9
COMPOSE_DOCKER_CLI_BUILD: 1
@@ -57,7 +58,7 @@ jobs:
57
58
docker-compose-file: 'docker-compose.ci.postgresql.yml'
59
steps:
60
- name: Checkout code
- uses: actions/checkout@v2
61
+ uses: actions/checkout@v4
62
- name: Set up Ruby
63
uses: ruby/setup-ruby@v1
64
with:
@@ -66,7 +67,7 @@ jobs:
66
67
- name: Start stack
68
run: |
69
cd docker
- docker-compose -p it -f ${{ matrix.docker-compose-file }} up --no-start
70
+ docker compose -p it -f ${{ matrix.docker-compose-file }} up --no-start
71
docker start it_db_1
72
- name: Wait for MySQL
73
if: ${{ matrix.docker-compose-file == 'docker-compose.ci.mysql.yml' }}
0 commit comments