From ccc7749f7e9b8c99d108cc094c97e09a70b2fe7e Mon Sep 17 00:00:00 2001 From: Tim Kimber Date: Wed, 4 Mar 2020 14:34:10 +0000 Subject: [PATCH] Attempt 2 --- .github/workflows/run-all-tests.yml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.github/workflows/run-all-tests.yml b/.github/workflows/run-all-tests.yml index 1872669..07023f5 100644 --- a/.github/workflows/run-all-tests.yml +++ b/.github/workflows/run-all-tests.yml @@ -7,14 +7,19 @@ on: branches: - master jobs: - build: + test-alpine: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - name: Build the docker-compose stack run: docker-compose up -d --build - test-alpine: - needs: build - steps: - name: Run test suite on Alpine run: test/run-test.sh alpine + test-debian: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - name: Build the docker-compose stack + run: docker-compose up -d --build + - name: Run test suite on Debian + run: test/run-test.sh debian