From c7dba15d9cdad9d6911c62acd711e30c2879eac8 Mon Sep 17 00:00:00 2001 From: Tsiry Sandratraina Date: Sun, 18 Aug 2024 15:56:28 +0000 Subject: [PATCH] ci: run on ubuntu only --- .github/workflows/ci.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 593c939..4bfeb3f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,14 +5,10 @@ on: - main jobs: tasks: - strategy: - matrix: - os: [ubuntu-latest, macos-latest] - runs-on: ${{ matrix.os }} + runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Shutdown Ubuntu MySQL - if: matrix.os == 'ubuntu-latest' run: | sudo service mysql stop sudo apt-get remove --purge mysql-server mysql-client mysql-common -y