From a0565e077f1c3d14774118989e27241270c055eb Mon Sep 17 00:00:00 2001 From: Abdullah Adeel Date: Sat, 22 Jan 2022 07:32:12 +0500 Subject: [PATCH] =?UTF-8?q?=E2=9D=8C=20removed=20`cimysql.yml`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/cimysql.yml | 44 ----------------------------------- 1 file changed, 44 deletions(-) delete mode 100644 .github/workflows/cimysql.yml diff --git a/.github/workflows/cimysql.yml b/.github/workflows/cimysql.yml deleted file mode 100644 index b0abab2ee..000000000 --- a/.github/workflows/cimysql.yml +++ /dev/null @@ -1,44 +0,0 @@ -name: CIMYSQL - -on: - push: - pull_request: - -jobs: - lint: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-python@v2 - with: - python-version: "3.9" - cache: pip - - name: Run pre-commit - uses: pre-commit/action@v2.0.3 - - docker: - strategy: - fail-fast: false - matrix: - script: - - name: Basic - MySQL - args: "database_engine=mysql database_version='mysql@8.0.28'" - - name: Extended - MySQL - args: "use_celery=y use_drf=y js_task_runner=Gulp database_engine=mysql database_version='mysql@8.0.28'" - - name: "${{ matrix.script.name }} Docker" - runs-on: ubuntu-latest - env: - DOCKER_BUILDKIT: 1 - COMPOSE_DOCKER_CLI_BUILD: 1 - - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-python@v2 - with: - python-version: "3.9" - cache: pip - - name: Install dependencies - run: pip install -r requirements.txt - - name: Docker ${{ matrix.script.name }} - run: sh tests/test_docker.sh ${{ matrix.script.args }}