ci: Added testing step to github actions

This commit is contained in:
Geoff Bourne
2020-07-11 14:09:08 -05:00
parent 5e75410e7c
commit 367c6cfd92
4 changed files with 44 additions and 7 deletions

View File

@@ -16,7 +16,18 @@ on:
- "[0-9]+.[0-9]+.[0-9]+-adopt13"
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Run tests
run: |
tests/test.sh
build:
needs:
- test
runs-on: ubuntu-latest
steps: