Browse Source

Attempt 2

pull/740/head
Tim Kimber 6 years ago
parent
commit
ccc7749f7e
1 changed files with 9 additions and 4 deletions
  1. +9
    -4
      .github/workflows/run-all-tests.yml

+ 9
- 4
.github/workflows/run-all-tests.yml View File

@ -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

Loading…
Cancel
Save