Add integration test

This commit is contained in:
Lars Gohr
2019-08-22 10:03:33 +02:00
parent e541342d5d
commit d20aaf54ed

16
.github/workflows/test_integration.yml vendored Normal file
View File

@@ -0,0 +1,16 @@
name: Integration Test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Login to Registry
run: docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_PASSWORD }}
- name: Publish to Registry
uses: elgohr/Publish-Docker-Github-Action@master
with:
args: elgohr/Publish-Docker-Github-Action
snapshot: true
- name: Logout
run: docker logout