From a21969abf1c35487dd8e0c8d3ca0f3865a4311de Mon Sep 17 00:00:00 2001 From: Tsiry Sandratraina Date: Sun, 18 Aug 2024 15:27:43 +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 599feb5..5f47cf0 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