From cd7c584e6fc4ce658782c9ec200feec5a078ba0b Mon Sep 17 00:00:00 2001 From: Dimitri Lozeve Date: Thu, 4 Jun 2020 11:24:22 +0200 Subject: [PATCH] Change the way tests are run in CI --- .github/workflows/main.yml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 0929ed8..b51f9bc 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -11,8 +11,13 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: actions/setup-python@v1 - - uses: BSFishy/meson-build@v1.0.1 + - name: Checkout repository + uses: actions/checkout@v2 + - name: Setup Python + uses: actions/setup-python@v1 + - name: Meson build + uses: BSFishy/meson-build@v1.0.1 with: - action: test + action: build + - name: Run tests + run: ./build/tests --color always