since version 28 nextcloud do not want trailing slash on directory #523
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: pydici test | |
on: [push] | |
jobs: | |
build_and_test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Launch pydici (mariadb, memcached, redis, django and celery) | |
run: docker-compose up -d | |
- name: setup fs right | |
run: sudo chown -R $USER:$USER data && sudo chmod 777 -R data | |
- name: Run tests | |
run: docker exec -e RUNNING_IN_GH=1 pydici_django_1 /code/run-test.sh |