Add debug code. #191
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push, pull_request] | |
jobs: | |
test: | |
name: ${{ matrix.lisp }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
lisp: [sbcl] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run tests | |
env: | |
LISP: ${{ matrix.lisp }} | |
run: | | |
docker compose up -d mysql postgres | |
sleep 10 | |
docker compose ps | |
docker compose logs mysql | |
docker compose up --exit-code-from tests tests |