From 409acda3beed2e7d57d130e414102d12fa6c60dd Mon Sep 17 00:00:00 2001 From: NatureFreshMilk Date: Thu, 28 Nov 2019 12:37:46 +0100 Subject: [PATCH] docker test --- .github/workflows/test.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..2d7fd72 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,15 @@ +name: test + +on: [push] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v1 + + - name: test + run: docker --version +