Create push.yml

This commit is contained in:
paulsj-80 2021-03-02 14:50:50 +02:00 committed by GitHub
parent e6998ab87e
commit e670df6344
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

12
.github/workflows/push.yml vendored Normal file
View File

@ -0,0 +1,12 @@
name: on-push
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build the stack
run: docker-compose up -d
- name: Test
run: docker run gradido-node-test
timeout-minutes: 2