Maintenance: fix GitHub actions #177
Workflow file for this run
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-remote-image | |
permissions: read-all | |
on: | |
pull_request: | |
jobs: | |
run-remote-image-docker-compose: | |
timeout-minutes: 20 | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: pull docker compose images | |
run: docker compose pull | |
- name: run docker compose up | |
run: docker compose up --detach | |
- name: add autowizard file | |
run: docker cp .github/auto_wizard.json zammad-docker-compose-zammad-railsserver-1:/opt/zammad/tmp | |
- name: run tests | |
run: .github/tests.sh |