aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/test.yml
diff options
context:
space:
mode:
authorSilvio Fricke2021-05-19 15:01:01 +0200
committerSilvio Fricke2021-05-19 15:01:01 +0200
commitb1178593204f9cbd47a21b46834a8a8ec90163b6 (patch)
treed703c3400638e01916998ba2b22e6b9bcc45a91f /.github/workflows/test.yml
parent98c28e49fa35a68903e25cdf7af0c755fe52b6bc (diff)
downloadlanguagetool-b1178593204f9cbd47a21b46834a8a8ec90163b6.tar.gz
github: own CI file for testing all contributions
Signed-off-by: Silvio Fricke <silvio.fricke@gmail.com>
Diffstat (limited to '.github/workflows/test.yml')
-rw-r--r--.github/workflows/test.yml27
1 files changed, 27 insertions, 0 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
new file mode 100644
index 0000000..377f85f
--- /dev/null
+++ b/.github/workflows/test.yml
@@ -0,0 +1,27 @@
+
+name: Test for silviof/docker-languagetool
+
+on: [ push ]
+
+jobs:
+ build:
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v2
+
+ - name: Set environment variables
+ run: |
+ make envout >> ${GITHUB_ENV}
+
+ - name: Prepare system
+ run: |
+ make prepare
+
+ - name: Build Docker image
+ run: |
+ make build
+
+ - name: Run tests
+ run: |
+ make test