Browse Source

untested

pull/740/head
Tim Kimber 6 years ago
parent
commit
292da1b3e5
No known key found for this signature in database GPG Key ID: 3E1804964E76BD18
1 changed files with 18 additions and 0 deletions
  1. +18
    -0
      .github/workflows/run-all-tests.yml

+ 18
- 0
.github/workflows/run-all-tests.yml View File

@ -0,0 +1,18 @@
name: Run all tests
on: repository_dispatch
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Build the docker-compose stack
run: docker-compose up -d --build
- name: Sleep
uses: jakejarvis/wait-action@master
with:
time: '60s'
- name: Check running containers
run: docker ps
- name: Run test suite
run: docker exec ubuntu bats /getssl/test

Loading…
Cancel
Save