From 84b5e94d7733935a83f8ace87baf6d593a0b61d3 Mon Sep 17 00:00:00 2001 From: Julius de Bruijn Date: Mon, 5 Sep 2022 19:53:44 +0200 Subject: [PATCH] Use Podman instead of Docker on macOS tests --- .github/workflows/test.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1edadd05..9bf304f6 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -207,10 +207,16 @@ jobs: - uses: actions-rs/toolchain@v1 - - uses: docker-practice/actions-setup-docker@master + - name: Install and start Podman + run: | + brew update + brew install podman + brew install podman-compose + podman machine init + podman machine start - name: Start SQL Server ${{matrix.database}} - run: DOCKER_BUILDKIT=1 docker-compose -f docker-compose.yml up -d mssql-${{matrix.database}} + run: podman-compose -f docker-compose.yml up -d mssql-${{matrix.database}} - name: Run tests run: cargo test ${{matrix.features}}