diff --git a/.github/tests.sh b/.github/tests.sh index 3be6cc3..28c55e7 100755 --- a/.github/tests.sh +++ b/.github/tests.sh @@ -13,8 +13,10 @@ done docker exec -i zammad-docker-compose_zammad-railsserver_1 bash <<'EOF' set -o errexit -bundle install --without mysql -rake test:units +#bundle install --without mysql +#rake test:units ruby -I test/ test/integration/object_manager_test.rb ruby -I test/ test/integration/package_test.rb EOF + +docker-compose logs \ No newline at end of file diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 0e4d587..7ad1043 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -33,17 +33,18 @@ jobs: with: dockerfile: containers/zammad/Dockerfile - install-docker-compose: + docker-compose-up: timeout-minutes: 30 runs-on: ubuntu-latest needs: lint-docker-files steps: - name: Checkout uses: actions/checkout@v1 - - name: get containers + - name: pull container images run: docker-compose pull - - name: install + - name: run docker-compose up run: docker-compose up -d - - name: tests + - name: run tests run: .github/tests.sh + \ No newline at end of file