We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a70982 commit d8e0fabCopy full SHA for d8e0fab
.github/workflows/ci.yml
@@ -11,9 +11,9 @@ jobs:
11
lisp: [sbcl]
12
13
steps:
14
- - uses: actions/checkout@v1
+ - uses: actions/checkout@v4
15
- name: Run tests
16
env:
17
LISP: ${{ matrix.lisp }}
18
run: |
19
- docker-compose up --exit-code-from tests tests
+ docker compose up --exit-code-from tests tests
docker-compose.yml
@@ -7,7 +7,7 @@ services:
7
context: .
8
target: base
9
args:
10
- - LISP=${LISP}
+ - LISP=${LISP:-sbcl}
restart: "no"
volumes:
- ./:/app/
@@ -33,7 +33,7 @@ services:
33
mysql:
34
container_name: mito-mysql
35
image: "mysql:8"
36
- command: --default-authentication-plugin=mysql_native_password
37
restart: always
+ command: --mysql_native_password=ON
38
environment:
39
MYSQL_ROOT_PASSWORD: mito
0 commit comments