bot-api/.gitea/workflows/test-dev.yaml

21 lines
556 B
YAML

name: test-dev
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
on:
pull_request:
jobs:
run-tests:
container:
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
- name: Run tests
run: docker compose run bot-api bun test