diff --git a/.gitea/workflows/test-dev.yaml b/.gitea/workflows/test-dev.yaml index e03840f..54e6e36 100644 --- a/.gitea/workflows/test-dev.yaml +++ b/.gitea/workflows/test-dev.yaml @@ -6,16 +6,16 @@ on: jobs: run-tests: container: - image: catthehacker/ubuntu:act-latest + image: docker/docker:stable-dind + #image: catthehacker/ubuntu:act-latest env: COMPOSE_FILE: compose.yaml DOCKER_USER: ${{ secrets.DOCKER_USER }} DOCKER_PASS: ${{ secrets.DOCKER_PASS }} - DOCKER_HOST: unix:///run/user/1000/docker.sock steps: - name: Checkout code uses: actions/checkout@v2 - name: Pull images - run: docker compose pull + run: dind compose pull - name: Run tests - run: docker compose run bot-api bun test \ No newline at end of file + run: dind compose run bot-api bun test \ No newline at end of file