diff options
author | Silvio Fricke | 2021-05-19 15:01:01 +0200 |
---|---|---|
committer | Silvio Fricke | 2021-05-19 15:01:01 +0200 |
commit | b1178593204f9cbd47a21b46834a8a8ec90163b6 (patch) | |
tree | d703c3400638e01916998ba2b22e6b9bcc45a91f | |
parent | 98c28e49fa35a68903e25cdf7af0c755fe52b6bc (diff) | |
download | languagetool-b1178593204f9cbd47a21b46834a8a8ec90163b6.tar.gz |
github: own CI file for testing all contributions
Signed-off-by: Silvio Fricke <silvio.fricke@gmail.com>
-rw-r--r-- | .github/workflows/test.yml | 27 |
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 |