diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml deleted file mode 100644 index 9d7423af82..0000000000 --- a/.github/workflows/tests.yml +++ /dev/null @@ -1,41 +0,0 @@ -name: "Tests" - -on: [pull_request] - -jobs: - tests: - name: Unit & E2E - runs-on: ubuntu-latest - - steps: - - name: Checkout repository - uses: actions/checkout@v2 - with: - # We must fetch at least the immediate parents so that if this is - # a pull request then we can checkout the head. - fetch-depth: 2 - - # If this run was triggered by a pull request event, then checkout - # the head of the pull request instead of the merge commit. - - run: git checkout HEAD^2 - if: ${{ github.event_name == 'pull_request' }} - - - name: Build Appwrite - # Upstream bug causes buildkit pulls to fail so prefetch base images - # https://github.com/moby/moby/issues/41864 - run: | - echo "_APP_FUNCTIONS_RUNTIMES=php-8.0" >> .env - docker pull composer:2.0 - docker pull php:8.0-cli-alpine - docker-compose build - docker-compose up -d - sleep 10 - - - name: Doctor - run: docker-compose exec -T appwrite doctor - - - name: Environment Variables - run: docker-compose exec -T appwrite vars - - - name: Run Tests - run: docker-compose exec -T appwrite test --debug diff --git a/app/config/storage/mimes.php b/app/config/storage/mimes.php index 242a990b8d..7995ef368a 100644 --- a/app/config/storage/mimes.php +++ b/app/config/storage/mimes.php @@ -16,6 +16,20 @@ return [ 'video/quicktime', 'video/x-msvideo', 'video/x-ms-wmv', + + // Audio Files + + 'audio/basic', // au snd RFC 2046 + 'auido/L24', // Linear PCM RFC 3190 + 'audio/mid', // mid rmi + 'audio/mpeg', // mp3 RFC 3003 + 'audio/mp4', // mp4 audio + 'audio/x-aiff', // aif aifc aiff + 'audio/x-mpegurl', // m3u + 'audio/vnd.rn-realaudio', // ra ram + 'audio/ogg', // Ogg Vorbis RFC 5334 + 'audio/vorbis', // Vorbis RFC 5215 + 'audio/vnd.wav', // wav RFC 2361 // Microsoft Word 'application/msword',