From 23b65406a97b054ecca88a362789718fa1e6ab80 Mon Sep 17 00:00:00 2001 From: Maxi Redigonda Date: Tue, 31 May 2022 13:15:46 -0300 Subject: [PATCH] Ignore mysql service when not running at the beginning --- .github/workflows/run-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 592b7b46..ddf3d0be 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -5,7 +5,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - run: sudo systemctl status mysql.service + - run: sudo systemctl status mysql.service || true - run: sudo /lib/systemd/systemd-sysv-install enable mysql - run: sudo systemctl enable mysql.service - run: sudo systemctl start mysql.service