Browse Source

Fix muddled debug/non-debug

pull/740/head
Tim Kimber 6 years ago
parent
commit
62db931882
No known key found for this signature in database GPG Key ID: 3E1804964E76BD18
2 changed files with 14 additions and 8 deletions
  1. +5
    -3
      .github/workflows/run-all-tests-debug.yml
  2. +9
    -5
      .github/workflows/run-all-tests.yml

+ 5
- 3
.github/workflows/run-all-tests-debug.yml View File

@ -1,4 +1,4 @@
name: Run all tests
name: Run all tests DEBUG
on: repository_dispatch
jobs:
build:
@ -7,5 +7,7 @@ jobs:
- uses: actions/checkout@v1
- name: Build the docker-compose stack
run: docker-compose up -d --build
- name: Run test suite
run: test/run-all-tests.sh
- name: Check running containers
run: docker ps
- name: Setup tmate session
uses: mxschmitt/action-tmate@v1

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

@ -1,5 +1,11 @@
name: Run all tests
on: repository_dispatch
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
@ -7,7 +13,5 @@ jobs:
- uses: actions/checkout@v1
- name: Build the docker-compose stack
run: docker-compose up -d --build
- name: Check running containers
run: docker ps
- name: Setup tmate session
uses: mxschmitt/action-tmate@v1
- name: Run test suite
run: test/run-all-tests.sh

Loading…
Cancel
Save