summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDylan Cali <calid1984@gmail.com>2021-11-25 18:11:09 -0800
committerGitHub <noreply@github.com>2021-11-25 18:11:09 -0800
commitb7ee24a69aa3aa28860f1ba5e3e2c754c020bc2d (patch)
tree1a514350fa9830a3700cfb4bd52b8761d933524e
parentc6fb3b113bdd159fbba6e5b200d2f59a3c20b97c (diff)
parent80b35b96de6ff2e124a2908784a828a179f70601 (diff)
Merge pull request #45 from zmughal/gha-ci
Add Docker test using GitHub Actions
-rw-r--r--.github/workflows/docker-test.yml21
1 files changed, 21 insertions, 0 deletions
diff --git a/.github/workflows/docker-test.yml b/.github/workflows/docker-test.yml
new file mode 100644
index 0000000..50e17f2
--- /dev/null
+++ b/.github/workflows/docker-test.yml
@@ -0,0 +1,21 @@
+name: Run Tests via Docker
+
+on:
+ push:
+ branches:
+ - '*'
+ pull_request:
+
+jobs:
+ docker-test:
+ name: Test using Docker
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout code
+ uses: actions/checkout@v2
+ - name: dzil test
+ run: |
+ ./docker-run dzil test
+ - name: docker-test-install
+ run: |
+ ./scripts/docker-test-install